使用Swift 2.1将预加载的数据库与Realm和RealmMapView一起使用

时间:2015-12-01 16:30:08

标签: realm swift2.1

将Swift 2.0与Realm一起使用,是否可以指定要与RealmMapView一起使用的数据库?

let path = NSBundle.mainBundle().pathForResource("myDB", ofType: "realm")

var config = Realm.Configuration.defaultConfiguration
config.path = path

self.mapView.realmConfiguration = config

这当前适用于模拟器,但不适用于设备。

1 个答案:

答案 0 :(得分:0)

在设备上,应用程序的包是只读的,因此您必须设置config.readOnly = true以只读模式打开Realm。