首先,您应该在AppDelegate 中创建一个方法来处理您的令牌获取。然后做这样的事情
func getToken() {
//Whatever you need to do here.
UserDefaults.standard.set(Date(), forKey: "tokenAcquisitionTime")
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "tokenAcquired"), object: nil)
}
在您的 AppDelegate 中创建一个计时器变量
var timer: Timer!
在您的AppDelegate 中创建以下方法
func postTokenAcquisitionScript() {
timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(tick), userInfo: nil, repeats: true)
}
func tick() {
if let time = UserDefaults.standard.value(forKey: "tokenAcquisitionTime") as? Date {
if Date().timeIntervalSince(time) > 3600 { //You can change '3600' to your desired value. Keep in mind that this value is in seconds. So in this case, it is checking for an hour
timer.invalidate()
getToken()
}
}
}
最后,在您的AppDelegate 的didFinishLaunching、willEnterForeground 和didEnterBackground 中,执行以下操作
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
//Your code here
NotificationCenter.default.addObserver(self, selector: #selector(postTokenAcquisitionScript), name: NSNotification.Name(rawValue: "tokenAcquired"), object: nil)
}
func applicationWillEnterForeground(_ application: UIApplication) {
//Your code here
NotificationCenter.default.addObserver(self, selector: #selector(postTokenAcquisitionScript), name: NSNotification.Name(rawValue: "tokenAcquired"), object: nil)
}
func applicationDidEnterBackground(_ application: UIApplication) {
//Your code here
NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: "tokenAcquired"), object: nil)
}