0

我已将新实体添加到现有 Plist。由于 Plist 不一致,新版本的应用程序崩溃。

如何将旧 plist 数据与新 plist 合并?

我的Plist创建方法如下

- (void)createEditableCopyOfFileIfNeeded:(NSString *)plistName
{
    // First, test for existence.
    BOOL success;
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSError *error;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *plistPath = [documentsDirectory stringByAppendingPathComponent:plistName];
    success = [fileManager fileExistsAtPath:plistPath];
    if (success)
    {
        return;
    }
    // The writable database does not exist, so copy the default to the appropriate location.
    NSString *defaultPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:plistName];
    success = [fileManager copyItemAtPath:defaultPath toPath:plistPath error:&error];
    if (!success)
    {
        NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
    }
}

提前致谢

4

2 回答 2

2

我会在您的 plist 中包含一个版本密钥,以将其与应用程序的版本进行比较。您可以使用以下代码段检查应用程序的版本:

 [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]

然后,在应用程序启动时:

  1. 阅读 plist,如果没有version key,它将是old version
  2. 如果是旧版本,则执行数据迁移到当前版本,使用默认值添加不存在的键。在这里,我会考虑未来更新的不同版本号。
  3. 添加带有您的捆绑包版本的版本键作为值。
  4. 保存 plist。
于 2012-10-08T09:36:47.873 回答
0

You can do it this way:

  1. Rename old plist e.g. old.plist
  2. Read both plists from separate files
  3. Merge information needed adding chosen information programatically to new plist
  4. Save new plist merged
于 2012-10-08T09:17:31.167 回答