1
我使用UIDocumentInteractionController
在我的應用程序中打開文檔。我用下面的方法進行預覽PDF文件: -UIDocumentInteractionController打開文件
- (IBAction)previewDocument:(id)sender
{
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"pdf"];
// Initialize Document Interaction Controller
self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
// Configure Document Interaction Controller
[self.documentInteractionController setDelegate:self];
// Preview PDF
[self.documentInteractionController presentOptionsMenuFromRect:down.frame inView:self.view animated:YES];
}
我已閱讀,我們可以通過太在UIDocumentInteractionController
從其他應用程序的應用程序讀取文件。
在我的應用程序中,如何使用UIDocumentInteractionController
從其他應用程序讀取文件?這一切是如何發生的?