在 .txt 文件中放入一些内容
我(终于)设法通过 ftp 将 txt 文件发送到我的服务器!耶!
目前它是一个空的 .txt 文件。我的问题是 - 如何将某些内容放入该 .txt 文件中。我可以从 UITextFields 存储 NSStrings,但如何将它们放入文件中?
谢谢
I have (finally) managed to send a txt file via ftp to my server! YAY!
It is an empty .txt file at the moment. My question is - How do I put something in that .txt file. I can store NSStrings from UITextFields, but how do i put them strings in the file?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些帮助您入门的课程:
NSFileManager
NSString 的路径方法
NSFileHandle
A few classes to get you started:
NSFileManager
NSString's path methods
NSFileHandle
我认为你可以使用 writeToFile: 方法。也许这可能有帮助。
将字符串写入文件时出现问题...(iPhone SDK)
I think you can use
writeToFile:
method. Perhaps this may help.Problem writing string to a file ...(iPhone SDK )