Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NSString *DownloadsPlistPath = [[NSBundle mainBundle] pathForResource:@"Root" ofType:@"plist"];
我的 Root.plist 文件在 setting.bundle 中,但上面的代码不允许读取 plist 文件。我想编辑这个文件我该怎么做。
提前致谢
Main Bundle 是只读的。
您不能编辑主包中的文件。
您需要将它们复制到文档目录以通过代码对其进行编辑。