如何使用 UITextView 在 iPhone 的 Objective-C 中保存/加载文本文件?
如何将文本文件永久保存到 iPhone 上?然后能够在另一个 UITextView 中再次打开它们?
提前致谢。
How do you save text files permanently to an iPhone? And then be able to open them again in another UITextView?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 NSString 写入文件:
从文件加载 NSString:
并使用 UITextView 的
text
属性来设置和获取 NSString。To write a NSString to a file:
To load NSString from a file:
And use
text
property of UITextView to set and get NSString.