1
私は15秒ごとにユーザープロファイルデータを取得するスケジューラーを持っています。私のアプリケーションが中断しているか、バックグラウンドでタイマーを無効にする必要がありますか?
class ProfileScheduler: NSObject {
private var _timer: Timer?
func start() {
_timer = Timer.scheduledTimer(timeInterval: 15, target: self, selector: #selector(self.fetchProfile), userInfo: nil, repeats: true)
}
func fetchProfile() {
print("Update........")
ProfileManager.getProfileData()
}
}
私はTimer
たび(一時停止、背景)モードで自分のアプリケーションを無効にする必要がありますか?アプリが(アクティブ)になると復元します。