标签: iphone ipad
这不起作用
NSString *myPDF = @"file:///Users/sm/Documents/doc.pdf";
这有效
NSString *myPDF = @"http://www.site.org/doc.pdf"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString: myPDF]];
那么我应该创建一个Web视图并在Web视图上加载pdf吗?
答案 0 :(得分:1)
您可能需要查看UIDocumentInteractionController
这是一个教程
http://blog.objectgraph.com/index.php/2010/06/14/ipad-sdk-3-2-document-support-1/