通过UIDocumentInteractionController获取应用程序列表

时间:2012-03-05 13:30:02

标签: iphone objective-c uidocumentinteraction

当我点击按钮时,我正在使用UIDocumentInteractionController在我的设备中打开可用的pdf应用程序列表,但现在我想显示设置表,它将显示所有应用程序的列表,用户将直接重定向到该applcation没有显示动作表或任何选项的时间 我的cade如下:

docController = [UIDocumentInteractionController interactionControllerWithURL:url];

    docController.delegate = self;

    [docController retain];

    BOOL isValid = [docController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];

我该怎么做?

1 个答案:

答案 0 :(得分:0)

你没有,使用官方SDK无法实现:

  • 获取打开特定文件的应用列表

  • 使用特定应用

  • 打开文件

您可以做的一件事是打开一个URL,系统将决定打开哪个应用程序。