Realm Migration doesn't work

后端 未结 8 1202
天涯浪人
天涯浪人 2020-12-28 17:16
    let config = Realm.Configuration(
        // Set the new schema version. This must be greater than the previously used
        // version (if you\'ve never set a         


        
8条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-28 17:46

    I find best solution:

    You need add Realm migration code before didFinishLaunchingWithOptions in willFinishLaunchingWithOptions

    func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
    
        RealmManager.shared.configureRealm()
    
        return true
    }
    

提交回复
热议问题