let config = Realm.Configuration(
// Set the new schema version. This must be greater than the previously used
// version (if you've never set a schema version before, the version is 0).
schemaVersion: 1,
// Set the block which will be called automatically when opening a Realm with
// a schema version lower than the one set above
migrationBlock: { migration, oldSchemaVersion in
// We haven’t migrated anything yet, so oldSchemaVersion == 0
if (oldSchemaVersion < 1) {
// Nothing to do!
// Realm will automatically detect new properties and removed properties
// And will update the schema on disk automatically
}
})
// Tell Realm to use this new configuration object for the default Realm
Realm.Configuration.defaultConfiguration = config
// Now that we've told Realm how to handle the schema change, opening the file
// will automatically perform the migration
let realm = try! Realm()
这被放在应用程序中(应用程序:didFinishLaunchingWithOptions :)
在我的测试程序中,我更改了对象中的字段。我想删除数据库中的所有内容,然后转到新的字段类型。我从文档中复制了上面的代码,但似乎什么也没做。我仍然遇到这些错误:
fatal error: 'try!' expression unexpectedly raised an error: Error Domain=io.realm Code=0 "Migration is required due to the following errors:
- Property types for 'unit' property do not match. Old type 'string', new type 'int'
- Property 'reps' has been added to latest object model." UserInfo={NSLocalizedDescription=Migration is required due to the following errors:
- Property types for 'unit' property do not match. Old type 'string', new type 'int'
- Property 'reps' has been added to latest object model.}: file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.1.101.15/src/swift/stdlib/public/core/
有任何想法吗?
只要您只在本地开发中,我建议重置您的Realm数据库而不是进行迁移。如果您已经使用其他架构发布了应用程序版本并希望保留用户数据,则迁移是可行的方法。
您可以通过从模拟器或设备中删除应用程序来删除数据库。或者,您可以在访问数据库之前使用NSFileManager
删除Realm文件。
let defaultPath = Realm.Configuration.defaultConfiguration.path!
try NSFileManager.defaultManager().removeItemAtPath(defaultPath)
尽管我在didFinishLaunchingWithOptions
中添加了默认迁移代码,但我的应用程序崩溃了,我遇到了类似的问题
问题是我确实在我的第一个视图控制器中初始化了一个Realm实例作为类级属性。因此从我的第一个ViewController中删除该类级别的realm对象修复了该问题。
import UIKit
import RealmSwift
class ViewController: UIViewController{
let db = try! Realm() // Removing this solved my issue
func doSomething(){
let db = try! Realm() // Placed this here instead
}
}
我改为在需要它的函数内部创建了对象,无论如何这是一种更好的方法。
确保在application(application:didFinishLaunchingWithOptions:)
中设置迁移配置之前,不要尝试实例化Realm()的实例。当它崩溃时检查执行堆栈以查找引发异常的实例。我有同样的错误,在我的情况下,我的一个视图控制器中的Realm实例在设置迁移块之前被实例化。
祝好运
我经常也会得到同样的致命错误。当您使用“主键”更改Realm对象时,通常会发生这种情况。最快捷,最简单的解决方法是从设备或模拟器中删除应用程序 - 然后再次运行您的项目。
您确定已正确更新了schemaVersion吗?如果在进行更改之前设置schemaVersion: 1
,则需要将其更改为2
才能触发迁移。
我找到最佳解决方案:
您需要在didFinishLaunchingWithOptions
中的willFinishLaunchingWithOptions
之前添加Realm迁移代码
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
RealmManager.shared.configureRealm()
return true
}
从iPhone删除应用程序并重新安装。效果很好。