正如标题所说,
我实际上是在寻找一种在iOS中从背景中的.DOC,.DOCX或.PPT文件生成缩略图的方法。
答案 0 :(得分:1)
我知道这不是你想要的文件类型,但它是一个起点:
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
答案 1 :(得分:0)
要打开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];