ファイルをiCloudに保存するプログラムがあり、これはiOS7でうまく機能しましたが、今ではiOS8でこのエラーが発生し、修正方法の答えが見つからないようです。他の誰かがこの問題を抱えていましたか?どんなアイデアでも大歓迎です。
エラー: CFURLCopyResourcePropertyForKeyは、スキームのないこのURLが渡されたために失敗しました:/var/mobile/Containers/Data/Application/ASFHDDE3-B1BB-41D7-A47C-DCC328362W21/Documents/mypictostore.png
コード行エラー: [fileManager setUbiquitous:YES itemAtURL:backupUrl destinationURL:[[ubiq URLByAppendingPathComponent:@ "Documents" isDirectory:true] URLByAppendingPathComponent:backupName] error:&theError];
RLS: destinationURL:file:/// private/var/mobile/Library/Mobile%20Documents/ABC23455〜MY-Program/backupUrl:/ var/mobile/Containers/Data/Application/ASDFGEEW-B1BB —6FR6-A47C-DCCF21876D36/Documents/mypic.png
ありがとう、ジョン
私にとって、この問題は以下を追加することで修正されました
file://
このようなファイルパスアドレスの直前:
var filePath = "file://\(fileURLpath)"
または、NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("mypictostore", ofType: "png")!)
を使用する代わりにNSURL(string: NSBundle.mainBundle().pathForResource("mypictostore", ofType: "png")!)
を使用できます
Objective-cの回答については、次のリンクを参照してください。 NSDocumentDirectoryでデータバックアップを無効にするとCFURLSetResourcePropertyForKeyが失敗しました
古いSwiftバージョンの回答:
var str:String = "/var/mobile/Containers/Data/Application/3039975A-5E05-4A4C-8000-55C681A7C35F/Documents/index.html"
var url:URL = URL.init(fileURLWithPath: str)
Swift 4回答:
var str:String = "/var/mobile/Containers/Data/Application/3039975A-5E05-4A4C-8000-55C681A7C35F/Documents/index.html"
var url:URL = URL(string: str)!
見て、私はこれを見つける、url
はThe location to write the data into
。システムにfile path
。