- iCloud ドキュメント ピッカーで特定のドキュメントを選択したい。
- しかし、7つ以上のフォーマットタイプを書くと、エラーが発生しました。
エラー : 式が複雑すぎて適切な時間内に解決できませんでした。式を分割することを検討してください
私は次のようなコードを実行しました:
let type = [String(kUTTypePDF), String(kUTTypeImage), String(kUTTypeMovie), String(kUTTypeVideo), String(kUTTypePlainText), String(kUTTypeMP3), String(kUTTypeAudio)]
let fileDocumentPicker = UIDocumentPickerViewController(documentTypes: type, inMode: .Import)
fileDocumentPicker.delegate = self
self.presentViewController(fileDocumentPicker, animated: true, completion: nil)