当前位置:  开发笔记 > IOS > 正文

在iPhone应用程序中保存.plist文件的位置

如何解决《在iPhone应用程序中保存.plist文件的位置》经验,为你挑选了2个好方法。

我正在开发一个iPhone应用程序,我想在其中使用.plist文件来保存一些配置变量.

在我的xcode中,在哪里创建.plist文件以及如何访问它?

谢谢,



1> Solmead..:

你会放入资源文件夹.然后使用这样的东西加载它:

NSString *file = [[NSBundle mainBundle] pathForResource:@"TwitterUsers" ofType:@"plist"];
NSArray *Props = [[NSArray alloc] initWithContentsOfFile:file];

TwitterUsers是plist文件的名称.

如果你的plist文件包含键和值,你可以使第二行成为NSDictionary而不是NSArray.



2> stefanB..:

要将plist文件存储在Documents目录中,您必须在应用程序中包含plist文件,然后在首次启动时将其复制到Documents目录.

要访问Documents目录中的文件:

NSArray *paths = 
NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, 
                                    NSUserDomainMask, YES); 
NSString *documentsPath = [paths objectAtIndex:0]; 

// /Documents/foo.plist 
NSString *fooPath = 
[documentsPath stringByAppendingPathComponent:@“foo.plist”];

推荐阅读
保佑欣疼你的芯疼
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有