使用 NSTextView 对象打开/编辑位于应用程序包中的 .txt 文件
我想向我的应用程序添加一个 NSTextView
对象,并添加一个操作来打开位于 textView 中应用程序包中的 .txt 文件。另外 - 我希望能够选择编辑和保存编辑后的文档而不重命名它。所以标准保存,而不是另存为。
处理这个问题的最佳方法是什么?
I would like to add an NSTextView
object to my app and add an action that opens a .txt file located in the app bundle in the textView. Also - I would like to have the option to edit and save the edited doc without renaming it. So standard save, not save as.
What's the best way to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSString 加载文件并将其放入文本视图中:
保存正好相反。获取字符串并将其写入文件:
Use NSString to load the file and put it in your text view:
Saving is just the opposite. Get the string and write it to the file: