NSArray writeToFile 第一次不工作(但下次工作)
我正在写一个巨大的 NSDictionaries NSArray。成功写入plist后的文件大小约为549KB。问题是,当我启动我的应用程序时,第一次尝试编写它时,它总是返回 NO(即它没有写),但下次它写得很好......有什么办法可以找出到底发生了什么错误?谢谢。
I am writing a huge NSArray of NSDictionaries. The file size when successfully written to a plist is about 549KB. The thing is, when I start my app, the first time I try to write it, it always returns NO (i.e. it didn't write), but then the next time it write just fine...Is there any way I can find out exactly what error occurred? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能你的字典数组是空的?尝试调试您的应用程序。
Might be your array of dictionaries is empty? Try to debug your app.
使用 NSData - writeToFile:options:error: 看看返回的错误是什么(NSError)说。
Use NSData - writeToFile:options:error: instead and see what does the returned error (NSError) say.