2

iCloud からインポートしようとすると、アプリ フォルダが無効になるという問題が発生します。下の画像を参照してください。

マイアプリのiCloudインポート

Google ドライブの iCloud インポートを確認しましたが、下の画像のように無効になっていません。

Google ドライブ iCloud インポート

他のアプリのフォルダーからドキュメントを取得する必要があります。何が間違っていましたか?

これは私のinfo.plistの現在の設定です:

私のinfo.plist

コード:

UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[@"public.item"] 
                  inMode:UIDocumentPickerModeImport];

documentPicker.delegate = self;

documentPicker.modalPresentationStyle = UIModalPresentationFormSheet;

[self presentViewController:documentPicker animated:YES completion:nil];
4

1 に答える 1

1

Utils を UIDocumentPickerViewController に追加する必要があります

UIDocumentPickerViewController *picker=[[UIDocumentPickerViewController alloc] 
      initWithDocumentTypes: @[(__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];
于 2016-01-12T07:47:04.333 に答える