我不明白我下一步应该做什么(关于压缩* .realm文件的一部分).我试图从Migration Example了解一个代码,但是我不知道Obj-C.
请尽可能明确的步骤,添加* .realm文件与初始数据swift ios项目,并将该数据加载到Realm数据库与第一次启动.
解决方法 在AppDelegate中实现这个函数openRealm并调用它func application(application: UIApplication,dIDFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { ... openRealm() return true }func openRealm() { let defaultRealmPath = Realm.defaultPath let bundleReamPath = NSBundle.mainBundle().resourcePath?.stringByAppendingPathComponent("default.realm") if !NSfileManager.defaultManager().fileExistsAtPath(defaultRealmPath) { NSfileManager.defaultManager().copyItemAtPath(bundleReamPath!,topath: defaultRealmPath,error: nil) }}
它会将您在应用程序中捆绑的领域文件复制到默认领域路径(如果尚不存在).之后,您通常像以前使用过的领域.
还有你在Swift讨论的迁移示例.
在Swift 3.0.1中,您可能更喜欢:
let defaultRealmPath = Realm.Configuration.defaultConfiguration.fileURL! let bundleRealmPath = Bundle.main.url(forResource: "seeds",withExtension: "realm") if !fileManager.default.fileExists(atPath: defaultRealmPath.absoluteString) { do { try fileManager.default.copyItem(at: bundleRealmPath!,to: defaultRealmPath) } catch let error { print("error copying seeds: \(error)") } }
(但请注意可选项)
总结以上是内存溢出为你收集整理的领域 – 添加具有初始数据项目的文件(iOS / Swift)全部内容,希望文章能够帮你解决领域 – 添加具有初始数据项目的文件(iOS / Swift)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)