我想在应用程序商店中的应用程序安装上预填充我的数据库,因此我有方法来检索数据以将它们放入核心数据中。有可能的 ?这是像onInstallation一样的方法吗?
答案 0 :(得分:0)
安装后无法运行代码。
只有在您的应用首次启动时才会运行代码,这将是您设置应用所需数据的地方。
如果数据无法更改,我建议您使用所有初始数据为CoreData创建数据存储,并在首次运行时将其从主包复制到存储CoreData存储的目录。
如果您需要获取数据,您可能希望向用户显示一个屏幕,说明您正在设置应用程序,这可能需要一些时间,具体取决于用户数据连接。
答案 1 :(得分:0)
据我所知,没有安装,但你怎么做:
1 - 在AppDelegate.swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
if UserDefaults.standard.value(forKey: "alreadyLaunch") as? Bool == nil || UserDefaults.standard.value(forKey: "alreadyLaunch") as? Bool == false{
//populate your database
} else {
//do nothing
}
return true
}
2 - 填充数据库后,添加:
UserDefaults.standard.set(true, forKey: "alreadyLaunch")