我想保存应用程序启动的时间,并在它检测到启动事件时将其保存到数据库中。
我想在每次启动应用程序时保存在数据库中。
我尝试使用该服务在 android 中执行此操作,这在 iOS 中是否可行?
我在 https://gist.github.com/hpique/7554209 中找到了一份公开通知列表。它不存在。
我希望有人可以帮助我。
谢谢。
Best Answer-推荐答案 strong>
最佳选择:
您只想在应用程序启动时节省时间。所以你可以使用 didFinishLaunchingWithOptions 方法。
您不能在 iOS 的后台使用这种功能。像android一样,您无法运行该服务。一切都被沙盒化了。
- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions
{
// App Launched, save the time here
// Put your Code here
return YES;
}
关于ios - 在后台检测是否启动了应用程序,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/25199589/
|