在 iOS 9 中通过 UIDocumentMenuViewController 导入文档时卡住了加载
Posted
技术标签:
【中文标题】在 iOS 9 中通过 UIDocumentMenuViewController 导入文档时卡住了加载【英文标题】:Importing of documents via UIDocumentMenuViewController in iOS 9 stuck at loading 【发布时间】:2016-02-11 13:23:53 【问题描述】:在ios 8下可以正常使用,但是在iOS 9中选择文档文件时卡住,卡住的图片如下:
代码:
UIDocumentMenuViewController *importMenu = [[UIDocumentMenuViewController alloc] initWithDocumentTypes:@[@"public.item", (__bridge NSString *) kUTTypeContent, (__bridge NSString *) kUTTypeData, (__bridge NSString *) kUTTypePackage, (__bridge NSString *) kUTTypeDiskImage, @"com.apple.iwork.pages.pages", @"com.apple.iwork.numbers.numbers", @"com.apple.iwork.keynote.key"] inMode:UIDocumentPickerModeImport];
importMenu.delegate = self;
[self presentViewController:importMenu animated:YES completion:nil];
【问题讨论】:
***.com/questions/29300772/… 不能使用uidocumentpickerviewcontroller,除了云存储,它没有添加新项目的选项,上面的代码被缩短了。 【参考方案1】:我不知道这是否是 iOS 9 本身的问题,因为我们确实遵循了苹果文档中的指示以及我们可以在网络上找到的结果。
只有在您登录 iCloud 帐户后未合并时才会发生这种情况。
【讨论】:
以上是关于在 iOS 9 中通过 UIDocumentMenuViewController 导入文档时卡住了加载的主要内容,如果未能解决你的问题,请参考以下文章
如何在 iOS 中通过 UIActivityViewController 导出 PHAsset 视频
如何在目标c中通过ios中的XMPPFramework连接XMPP服务器