gpt4 book ai didi

ios - 创建简单的txt文件并从中读取 objective-c

转载 作者:行者123 更新时间:2023-12-01 18:46:19 25 4
gpt4 key购买 nike

我想创建服务器的模拟实现。我有几个 json 文件。

我想将这些文件添加到 xcode 项目中,然后在应用程序中读取它们。

在android中,我们有 Assets 文件夹。我们可以在那里放置文件,它们将与应用程序一起安装。

ios中是否有任何 Assets 文件夹来存储文件,以及如何从那里读取文件?

最佳答案

在 iOS App Bundle 中是主目录。如果你把你的文件放在那里,你可以这样阅读:

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"myFile" ofType:@"txt"];
NSString *testString = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
NSLog(@"%@",testString);

这将读取文件 myFile.txt

关于ios - 创建简单的txt文件并从中读取 objective-c ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35459620/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com