有时候我们开发的App会从网络上下载下来一些文件,如PDF文件等。
当用户需要查看这些文件的时候,我们就要提供一些方法加载这些文件。
这里举例说明一下怎么使用UIDocumentInteractionController类关联到Adobe Acrobat
pdf阅读器打开pdf文件。
UIDocumentInteractionController的使用非常简单,但是有一点需要注意,代码如下:
self.documentController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
self.documentController.delegate = self;
BOOL open = [self.documentController presentOpenInMenuFromRect:self.view.frame inView:self.view animated:YES];
if (open) {
NSLog(@"能够打开PDF文件");
}else {
NSLog(@"无法打开");
}
注意这里的self.documentController是自定义类里面的一个属性,因为UIDocumentInteractionController的实例化对象必须被retain.
如果用户的手机里面没有安装iBooks、Adobe等这些阅读工具,我们还可以使用UIWebView作为备选工具,给UIWebView提供一个文件的
URL也能打开pdf、doc等常见的文件。