首先,你應該建立在你的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)
}
你找到了正確的方法嗎? – user805981