I am using UIDocumentInteractionController
for opening documents in my app. I have used method below for previewing the PDF file:-
- (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];
}
I have read that we can read files in an app from other app too by UIDocumentInteractionController
.
In my app, How can I read the files from other app using UIDocumentInteractionController
? How does all this happens?