前提・実現したいこと
Swiftで「ファイル」アプリからファイルのドラッグ&ドロップを受け付けて開くプログラムを作成しています。
下記のページを参考にしました。
https://qiita.com/hironytic/items/a8ffdf37cfa768d92ced
https://stackoverflow.com/questions/57945389/original-fileurl-from-itemprovider-and-uidropinteractiondelegate-functions
発生している問題
問題として、ファイルをひとつ受け付けるのは正常に行えるのですが、ファイル数が増えてくるといくつかを取りこぼすことがあります。(190/250など)
考えられる原因はURLの取得を行う部分(loadInPlaceFileRepresentationのCompletionHandler)が非同期処理になっているため、すべての取得が完了する前にdropInteraction(_:sessionDidEnd:)が呼ばれてしまうのかも?と疑っていますが、sessionDidEnd側でうまく取得する方法が見つかりません。
できましたら、よりよい処理の流れについて教えてください。
該当のソースコード
最終的にopenURLsメソッドでURLの配列を受け取って開きます。
Swift
1func dropInteraction(_ interaction: UIDropInteraction, canHandle session: UIDropSession) -> Bool { 2 return true 3} 4 5func dropInteraction(_ interaction: UIDropInteraction, sessionDidUpdate session: UIDropSession) -> UIDropProposal { 6 return UIDropProposal(operation: .copy) 7} 8 9func dropInteraction(_ interaction: UIDropInteraction, performDrop session: UIDropSession) { 10 self.droppedURLs.removeAll() 11 for (index,item) in session.items.enumerated() { 12 item.itemProvider.loadInPlaceFileRepresentation(forTypeIdentifier: "public.item", completionHandler: { [weak self] (url:URL?, isInplaceOrCopy:Bool, error:Error? ) in 13 self!.droppedURLs.append(url!) 14 }) 15 } 16} 17 18func dropInteraction(_ interaction: UIDropInteraction, sessionDidEnd session: UIDropSession) { 19 if(self.droppedURLs.count > 0) { 20 self.openURLs(self.droppedURLs) 21 } 22}
試したこと
単にdropInteraction(_:sessionDidEnd:)内でドロップされたファイルのURLを取得しようとすると、URLは取得できず、下記のエラーが発生します。
Swift
1func dropInteraction(_ interaction: UIDropInteraction, sessionDidEnd session: UIDropSession) { 2 for item in session.items { 3 item.itemProvider.loadInPlaceFileRepresentation(forTypeIdentifier: "public.item", completionHandler: { [weak self] (url:URL?, isInplaceOrCopy:Bool, error:Error? ) in 4 print(url!) 5 }) 6 } 7}
発生するエラー
Failed to open in place representation of type public.item. Error: Error Domain=NSItemProviderErrorDomain Code=-1000 "(null)"
補足情報(FW/ツールのバージョンなど)
Xcode 12.5
Swift 5.4
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。