属性列表 - 文件名和保存

时间:2012-03-28 17:51:02

标签: ios nsmutablearray plist writetofile

我对财产清单有以下疑问

  1. 文件路径 - 这是构建文件路径的正确方法吗?

    if(!_xmlFilePath)
    {
        _xmlFilePath = [[NSBundle mainBundle] pathForResource:@"AppData" ofType:@"plist"];
    
        if(!_xmlFilePath)
            _xmlFilePath = [NSString stringWithFormat:@"%@/AppData.plist", [[NSBundle mainBundle] bundlePath]];
    }
    
  2. 将数据保存到plist文件 - 这是正确的方法吗?

    • 我将数据存储在NSMutableArray对象中,并保存到plist文件中。
    • 当一个条目添加到我的NSMutableArray对象时,我将数组的全部内容保存到plist文件中
    • 当只添加了一个条目或者是否只有一个条目添加到plist文件时,是否必须将数组的全部内容保存到plist文件中? (同样适用于更新和删除)

0 个答案:

没有答案