gpt4 book ai didi

ios - 核心数据数据库和应用程序重新安装

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:44:00 24 4
gpt4 key购买 nike

当我们使用 xcode 重新安装应用程序时,iOS 中的核心数据数据库是否会删除所有现有行?

最佳答案

在 Xcode 中安装应用程序:

  1. 删除旧的应用程序,然后安装:在这种情况下,核心数据数据库将被删除。
  2. 在旧应用程序存在时安装:在这种情况下,核心数据将不执行任何操作。

在大多数情况下,第二个是我们应该注意的。如果您更改核心数据中的表,您应该告诉核心数据进行迁移。这就是您所需要的:

NSDictionary *options = @{NSMigratePersistentStoresAutomaticallyOption: @YES, 
NSInferMappingModelAutomaticallyOption: @YES};
NSError *error;
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];

if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:storeUrl
options:options
error:&error]) {
// Handle error
NSLog(@"Problem with PersistentStoreCoordinator: %@",error);
}

NSMigratePersistentStoresAutomaticallyOption = YES; 可以解决问题。 我认为您应该始终这样做。

关于ios - 核心数据数据库和应用程序重新安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21641769/

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