正如标题所说,
我本质上是在寻找一种在后台从iOS中的.DOC、.DOCX或.PPT文件生成缩略图的方法。
发布于 2013-09-26 02:43:42
我知道这不是您想要的文件类型,但这是一个起点:
How can I programatically generate a thumbnail of a PDF with the iPhone SDK?
http://davidbits.blogspot.com.es/2012/10/ios-getting-thumbnail-of-pdf-document.html
发布于 2013-09-25 19:58:55
要打开Mail.app或Safari可以打开的任何东西(PDF、页面、Word、数字、Excel、图像等),您通常使用UIWebView。
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0.0F, 0.0F, 320.0F, 480.0F)];
NSURL *pdfURL = [NSURL URLWithString:@"http://www.something.com/myFile.pdf"];
NSURLRequest *request = [NSURLRequest requestWithURL:pdfURL];
[webView loadRequest:request];
[self.view addSubview:webView];https://stackoverflow.com/questions/19003390
复制相似问题