【发布时间】: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];
【问题讨论】:
-
不能使用uidocumentpickerviewcontroller,除了云存储,它没有添加新项目的选项,上面的代码被缩短了。
标签: ios objective-c iphone uidocumentmenuvc