stringWithContentsOfFile 已弃用
我在我的应用程序中使用以下代码,但它发出警告,指出 stringWithContentsOfFile
已弃用。
谁能告诉我如何避免这个警告?此警告将来会影响我的应用程序吗?
NSString *myData= [NSString stringWithContentsOfFile:path];
I use the following code in my app, but it gives a warning that stringWithContentsOfFile
is deprecated.
Can anyone tell me how to avoid this warning? Will this warning affect my app in the future?
NSString *myData= [NSString stringWithContentsOfFile:path];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想我可能会稍微扩展一下 daveoncode 的答案,所以如果您对错误不感兴趣,您可以简单地编写
,它会按您的预期工作。
Thought I might expand on daveoncode's answer a bit, so if you are not interested in the errors, you can just simply write
and it will work as you expected.
您必须使用
stringWithContentsOfFile:encoding:error:
或stringWithContentsOfFile:usedEncoding:error:
You have to use
stringWithContentsOfFile:encoding:error:
orstringWithContentsOfFile:usedEncoding:error: