打开文档的使用方法
#pragmamarkActions-(IBAction)previewDocument:(id)sender{NSURL*URL=[[NSBundlemainBundle]URLForResource:@"sample"withExtension:@"pdf"];if(URL){//InitializeDocumentInteractionControllerself.documentInteractionController=[UIDocumentInteractionControllerinteractionControllerWithURL:URL];//ConfigureDocumentInteractionController[self.documentInteractionControllersetDelegate:self];//PreviewPDF[self.documentInteractionControllerpresentPreviewAnimated:YES];}}-(IBAction)openDocument:(id)sender{UIButton*button=(UIButton*)sender;NSURL*URL=[[NSBundlemainBundle]URLForResource:@"test"withExtension:@"pdf"];if(URL){//InitializeDocumentInteractionControllerself.documentInteractionController=[UIDocumentInteractionControllerinteractionControllerWithURL:URL];//ConfigureDocumentInteractionController[self.documentInteractionControllersetDelegate:self];//PresentOpenInMenu[self.documentInteractionControllerpresentOpenInMenuFromRect:[buttonframe]inView:self.viewanimated:YES];}}#pragmamark-#pragmamarkDocumentInteractionControllerDelegateMethods-(UIViewController*)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController*)controller{returnself;}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。