我想在本地保存一個UIDocument(用於當用戶的iCloud關閉)。這被證明是一個挑戰。每次我嘗試保存它時,保存都會失敗。我可以訪問哪些錯誤?有沒有人知道爲什麼會失敗?謝謝!保存UIDocument本地
0
A
回答
0
從上UIDocument文檔:
- (void)handleError:(NSError *)error userInteractionPermitted:(BOOL)userInteractionPermitted
This method is called by the default implementations of openWithCompletionHandler: and saveToURL:forSaveOperation:completionHandler: when UIDocument encounters a reading or writing error, respectively.`
如果實施此方法,你應該能夠檢查NSError在那裏,以確定故障的原因。
+0
我現在用的是saveToURL方法,它調用你所提到的方法。這種方法沒有任何錯誤信息,但是 –
+0
@ClintWarner:看的HandleError:userInteractionPermitted:爲UIDocument的文件中。回答編輯。 –
相關問題
- 1. UIDocument自動保存不起作用
- 2. 關閉UIDocument後停止自動保存
- 3. 保存到URL的UIDocument失敗?
- 4. iCloud保存數據隨着UIDocument崩潰
- 5. 保存文件時使用自動保存的UIDocument
- 6. 保存在本地存儲
- 7. 將本地存儲模型保存到本地存儲
- 8. iOS - Uidocument版本管理
- 9. 本地保存d3js圖
- 10. 在本地保存文件
- 11. Android:本地保存錄音?
- 12. 本地保存PDF在IOS
- 13. 保存本地javascript變化
- 14. 本地文件blob保存
- 15. 儘管指示成功,UIDocument仍未保存到文件
- 16. 爲什麼在自動保存我的UIDocument之後調用loadFromContents?
- 17. 保存UIDocument到iCloud給我NSCocoaErrorDomain代碼= 4
- 18. UIDocument&NSFileWrapper - NSFastEnumerationMutationHandler在保存期間更改文件包裝
- 19. 離子當保存到本地存儲
- 20. 保存到本地存儲onkeyup
- 21. JavaScript保存到本地存儲?
- 22. 如何保存到本地存儲
- 23. 將令牌保存到本地存儲
- 24. 保存一些contenteditables本地存儲 - - -
- 25. 將視頻保存到本地存儲
- 26. 我如何保存在本地存儲
- 27. JQGrid - 將colmodel保存到本地緩存
- 28. HTML5本地存儲來保存筆記
- 29. 將數據保存到本地存儲
- 30. 在保存在本地存儲陣列
是什麼UIDocument和UIManagedDocument之間的區別? –
這裏,看看這個http://stackoverflow.com/questions/11933055/uidocument-openwithcompletionhandler-crash,也是一個教程來檢查你的工作流程http://www.raywenderlich.com/12779/icloud-and-uidocument-beyond-在-基礎知識部分-1 – DogCoffee