我试图运行NSTimer任务:
timerUploadData = NSTimer.scheduledTimerWithTimeInterval(60 * 1, target: self, selector: "uploadData", userInfo: nil, repeats: true)
但它只适用于我们在后台运行应用程序,但即使应用程序停止在家中双击并将应用程序滑动到顶部以杀死它,我仍然无法运行此操作。怎么做?
答案 0 :(得分:1)
如果用户杀死应用程序,它将不再运行,因此您的代码不再运行。没有这样的状态,您的代码/应用程序可以在可能的位置。
我认为你应该阅读app life cycle document。