我正在使用 UIDocumentInteractionController 在另一个应用程序 DropBox 中打开文件。
我想要做的是在另一个特定的应用程序中打开文件,但到目前为止我只设法显示支持的应用程序并允许用户选择。
UIDocumentInteractionController *udi = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath: jpgPath]];
[udi retain];
CGRect r = CGRectMake(0, 0, 300, 300);
[udi presentOpenInMenuFromRect:r inView:self.view animated:YES];
这提供了支持的应用程序列表,但我想直接使用 Dropbox 打开文件,而不使用选项框。有任何想法吗?