这就是我所坚持的 – 将旧数据库转移到应用程序组中的新位置的最佳方法是什么?
解决方法 基于@segIDdins评论,我决定使用NSfileManager将旧数据库移动到应用程序组:let fileManager = NSfileManager.defaultManager() //Cache original realm path (documents directory) let originalDefaultRealmPath = RLMRealm.defaultRealmPath() //Generate new realm path based on app group let appGroupURL: NSURL = fileManager.containerURLForSecurityApplicationGroupIDentifIEr("group.AppGroup")! let realmPath = appGroupURL.path!.stringByAppendingPathComponent("default.realm") //Moves the realm to the new location if it hasn't been done prevIoUsly if (fileManager.fileExistsAtPath(originalDefaultRealmPath) && !fileManager.fileExistsAtPath(realmPath)) { var error: NSError? fileManager.moveItemAtPath(originalDefaultRealmPath,topath: realmPath,error: &error) if (error != nil) { println(error) } } //Set the realm path to the new directory RLMRealm.setDefaultRealmPath(realmPath)总结
以上是内存溢出为你收集整理的ios – 如何将领域数据库迁移到应用程序组?全部内容,希望文章能够帮你解决ios – 如何将领域数据库迁移到应用程序组?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)