I am using UIDocumentInteractionController to open a file in another DropBox application.
What I'm trying to do is open the file in another specific application, but so far I have managed to display the supported applications and let the user choose.
UIDocumentInteractionController *udi = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath: jpgPath]]; [udi retain]; CGRect r = CGRectMake(0, 0, 300, 300); [udi presentOpenInMenuFromRect:r inView:self.view animated:YES];
Here is a list of supported applications, but I want to directly open the file using Dropbox without the options window. Any ideas?
source share