gpt4 book ai didi

ios - 在 iphone 中显示 .key(keynote) 文件

转载 作者:可可西里 更新时间:2023-11-01 06:16:54 29 4
gpt4 key购买 nike

我得到了一些主题文件。

我必须安装一个应用程序。

当我打开任何应用程序时,它应该会在应用程序中显示该主题演讲。

我的问题是,

  1. iOS 是否支持主题演讲?
  2. 如果是,如何展示?

不过我检查了一下...

但是..不工作

http://developer.apple.com/library/ios/#qa/qa1630/_index.html

iWork '09 文档不使用包格式,不得压缩为 ZIP。

要在 UIWebView 中显示支持的文档,请创建一个 NSURL 作为带有文档路径的文件 URL。 list 1 演示了一种使用 UIWebView 从您的应用程序包加载文档的方法。

list 1 将文档加载到 UIWebView。

 -(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webView
{
NSString *path = [[NSBundle mainBundle] pathForResource:documentName ofType:nil];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
}

// Calling -loadDocument:inView:
[self loadDocument:@"mydocument.rtfd.zip" inView:self.myWebview];

最佳答案

您可以在 UIWEBVIEW 中将主题文件作为本地捆绑文件打开,也可以位于服务器上。

NSString *urlAddress = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"key"];
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];

您可以查看 Excel (.xls)、Keynote(.key.zip)、数字 (.numbers.zip)、页面 (.pages.zip)、PDF(.pdf)、Powerpoint (.ppt)、Word ( .doc), Rich text format (.rtf), Rich text format Directory (.rtf.zip), Keynote '09(.key), numbers '09 (.numbers) and pages '09(.pages)

关于ios - 在 iphone 中显示 .key(keynote) 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8254468/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com