如何将文本文件放入已配置的 iOS 设备上?

发布于 2024-11-17 17:11:15 字数 105 浏览 1 评论 0原文

我的程序读取和写入文本文件,但目前它只有一个虚拟数据生成器,可以创建一组无趣的数据。对于我很快要做的演示,我想显示一些更有趣的数据。我可以在 Mac 上编写文本文件并以某种方式将它们放到设备上吗?

My program reads and writes text files, but for now it just has a dummy data generator that creates an uninteresting set of data. For the demo I soon need to do, I'd like to display some more interesting data. Can I write text files on my Mac and put them on the device somehow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多彩岁月 2024-11-24 17:11:15

Data.txt 添加到资源文件夹并执行如下操作:

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Data" 
                                                     ofType:@"txt"];
if (filePath != nil) {
  theContents = [NSString stringWithContentsOfFile:filePath
                                          encoding:NSUTF8StringEncoding
                                             error:NULL];

}

Add Data.txt to the resources folder and do something like this:

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Data" 
                                                     ofType:@"txt"];
if (filePath != nil) {
  theContents = [NSString stringWithContentsOfFile:filePath
                                          encoding:NSUTF8StringEncoding
                                             error:NULL];

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文