当我点击按钮时,我正在使用UIDocumentInteractionController在我的设备中打开可用的pdf应用程序列表,但现在我想显示设置表,它将显示所有应用程序的列表,用户将直接重定向到该applcation没有显示动作表或任何选项的时间 我的cade如下:
docController = [UIDocumentInteractionController interactionControllerWithURL:url];
docController.delegate = self;
[docController retain];
BOOL isValid = [docController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
我该怎么做?
答案 0 :(得分:0)
你没有,使用官方SDK无法实现:
获取打开特定文件的应用列表
使用特定应用
您可以做的一件事是打开一个URL,系统将决定打开哪个应用程序。