ドキュメントを選択してUIDocumentPickerViewControllerを使用してデバイスにダウンロードする前に、iCloudでドキュメントのサイズを見つける方法.ドキュメントをデバイスにダウンロードしてからNSDataに変換できますが、ファイルサイズを決定できますが、ドキュメント自体のダウンロードを回避し、ダウンロードする前にファイルサイズを事前に決定してください。uidocumentpickerviewcontrollerにメソッドまたはプロパティが見つかりませんでした。
- (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentAtURL:(NSURL *)url {
NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
NSError *error = nil;
[coordinator coordinateReadingItemAtURL:url options:0 error:&error byAccessor:^(NSURL *newURL) {
//assuming the file coordinator has downloaded the file here and provided the new url here
}
}