- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个 90 年代计时器,它在后台运行,通过注册 beginBackgroundTaskWithExpirationHandler
完成。这看起来很简单,但我遇到的问题是计时器本身漂移很大。对于 90 秒计时器,我得到大约 30-35 秒的漂移。即,如果我启动计时器,让应用进入后台,然后在 90 秒后打开应用,计时器会显示剩余 30 秒。
如果我让应用程序在整个 90 年代都处于打开状态,我将获得零漂移。如果我将计时器的时间间隔降低到 1 秒(而不是我首选的 0.05 秒),那么背景漂移就会消失。
如何在不降低计时器精度的情况下消除背景漂移?
class TimerViewController: UIViewController {
@IBOutlet weak var startTimerButton: UIButton!
@IBOutlet weak var timerLabel: UILabel!
@IBOutlet weak var resetTimerButton: UIButton!
var timer = NSTimer()
let timeInterval:NSTimeInterval = 0.05
let timerEnd:NSTimeInterval = 90
var timeCount:NSTimeInterval = 0
var backgroundTask: UIBackgroundTaskIdentifier = UIBackgroundTaskInvalid
var backgroundTaskIdentifier: UIBackgroundTaskIdentifier?
override func viewDidLoad() {
super.viewDidLoad()
resetTimeCount()
timerLabel.text = timeString(timeCount)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(TimerViewController.reinstateBackgroundTask), name: UIApplicationDidBecomeActiveNotification, object: nil)
}
deinit {
NSNotificationCenter.defaultCenter().removeObserver(self)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: Actions
@IBAction func startTimerButtonTapped(sender: UIButton) {
if !timer.valid { //prevent more than one timer on the thread
timerLabel.text = timeString(timeCount)
timer = NSTimer.scheduledTimerWithTimeInterval(timeInterval, target: self,selector: #selector(TimerViewController.timerDidEnd(_:)),userInfo: nil, repeats: true)
schedulePushNotification()
registerBackgroundTask()
}
}
@IBAction func resetTimerButtonTapped(sender: UIButton) {
timer.invalidate()
resetTimeCount()
timerLabel.text = timeString(timeCount)
cancelAllNotifications()
}
// MARK: Timer
func resetTimeCount(){
timeCount = timerEnd
}
func timerDidEnd(timer: NSTimer){
//timer that counts down
timeCount = timeCount - timeInterval
if timeCount <= 0 { //test for target time reached.
timerLabel.text = "Time is up!!"
timer.invalidate()
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate)
if backgroundTask != UIBackgroundTaskInvalid {
endBackgroundTask()
cancelAllNotifications()
}
} else { //update the time on the clock if not reached
timerLabel.text = timeString(timeCount)
}
}
func timeString(time: NSTimeInterval) -> String {
let minutes = Int(time) / 60
let seconds = time - Double(minutes) * 60
let secondsFraction = seconds - Double(Int(seconds))
return String(format:"%02i:%02i.%02i",minutes,Int(seconds),Int(secondsFraction * 100.0))
}
// MARK: BackgroundTask
func registerBackgroundTask() {
backgroundTask = UIApplication.sharedApplication().beginBackgroundTaskWithExpirationHandler {
[unowned self] in
self.endBackgroundTask()
}
assert(backgroundTask != UIBackgroundTaskInvalid)
}
func reinstateBackgroundTask() {
if timeCount != 0.0 && (backgroundTask == UIBackgroundTaskInvalid) {
registerBackgroundTask()
}
}
func endBackgroundTask() {
UIApplication.sharedApplication().endBackgroundTask(backgroundTask)
backgroundTask = UIBackgroundTaskInvalid
}
// MARK: Notifications
func schedulePushNotification() {
let notification = UILocalNotification()
notification.alertAction = "Go back to App"
notification.alertBody = "The 90s timer is finished!"
notification.fireDate = NSDate(timeIntervalSinceNow: timerEnd+1)
UIApplication.sharedApplication().scheduleLocalNotification(notification)
}
func cancelAllNotifications() {
UIApplication.sharedApplication().cancelAllLocalNotifications()
}
}
最佳答案
我放弃了后台任务并将其替换为 NSUserDefaults
中的存储。漂移消失了。这是最终代码:
class TimerViewController: UIViewController {
@IBOutlet weak var startTimerButton: UIButton!
@IBOutlet weak var timerLabel: UILabel!
@IBOutlet weak var resetTimerButton: UIButton!
var timer = NSTimer()
let timeInterval:NSTimeInterval = 0.01
let timerEnd:NSTimeInterval = 90
var timeCount:NSTimeInterval = 0
override func viewDidLoad() {
super.viewDidLoad()
resetTimeCount()
timerLabel.text = timeString(timeCount)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(TimerViewController.applicationWillResignActive),name: UIApplicationWillResignActiveNotification, object: nil)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(TimerViewController.applicationDidBecomeActive),name: UIApplicationDidBecomeActiveNotification, object: nil)
}
deinit {
NSNotificationCenter.defaultCenter().removeObserver(self)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: Actions
@IBAction func startTimerButtonTapped(sender: UIButton) {
if !timer.valid { //prevent more than one timer on the thread
timerLabel.text = timeString(timeCount)
timer = NSTimer.scheduledTimerWithTimeInterval(timeInterval, target: self,selector: #selector(TimerViewController.timerDidEnd(_:)),userInfo: nil, repeats: true)
schedulePushNotification()
}
}
@IBAction func resetTimerButtonTapped(sender: UIButton) {
timer.invalidate()
resetTimeCount()
timerLabel.text = timeString(timeCount)
cancelAllNotifications()
}
// MARK: Timer
func resetTimeCount(){
timeCount = timerEnd
}
func timerDidEnd(timer: NSTimer){
//timer that counts down
timeCount = timeCount - timeInterval
if timeCount <= 0 { //test for target time reached.
timerLabel.text = "Time is up!!"
timer.invalidate()
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate)
cancelAllNotifications()
} else { //update the time on the clock if not reached
timerLabel.text = timeString(timeCount)
}
}
func timeString(time: NSTimeInterval) -> String {
let minutes = Int(time) / 60
let seconds = time - Double(minutes) * 60
let secondsFraction = seconds - Double(Int(seconds))
return String(format:"%02i:%02i.%02i",minutes,Int(seconds),Int(secondsFraction * 100.0))
}
// MARK: Timer Storage
struct PropertyKey {
static let timeCountKey = "TimerViewController_timeCount"
static let timeMeasurementKey = "TimerViewController_timeMeasurement"
}
dynamic private func applicationWillResignActive() {
if !timer.valid {
clearDefaults()
NSLog("Clearning defaults")
} else {
saveDefaults()
NSLog("Saving defaults")
}
}
dynamic private func applicationDidBecomeActive() {
if timer.valid {
loadDefaults()
NSLog("Loading defaults")
}
}
private func saveDefaults() {
let userDefault = NSUserDefaults.standardUserDefaults()
userDefault.setObject(timeCount, forKey: PropertyKey.timeCountKey)
userDefault.setObject(NSDate().timeIntervalSince1970, forKey: PropertyKey.timeMeasurementKey)
userDefault.synchronize()
}
private func clearDefaults() {
let userDefault = NSUserDefaults.standardUserDefaults()
userDefault.removeObjectForKey(PropertyKey.timeCountKey)
userDefault.removeObjectForKey(PropertyKey.timeMeasurementKey)
userDefault.synchronize()
}
private func loadDefaults() {
let userDefault = NSUserDefaults.standardUserDefaults()
let restoredTimeCount = userDefault.objectForKey(PropertyKey.timeCountKey) as! Double
let restoredTimeMeasurement = userDefault.objectForKey(PropertyKey.timeMeasurementKey) as! Double
let timeDelta = NSDate().timeIntervalSince1970 - restoredTimeMeasurement
print(timeDelta)
print(timeCount - restoredTimeCount - timeDelta)
timeCount = restoredTimeCount - timeDelta
}
// MARK: Notifications
func schedulePushNotification() {
let notification = UILocalNotification()
notification.alertAction = "Go back to App"
notification.alertBody = "The 90s timer is finished!"
notification.fireDate = NSDate(timeIntervalSinceNow: timerEnd+1)
UIApplication.sharedApplication().scheduleLocalNotification(notification)
}
func cancelAllNotifications() {
UIApplication.sharedApplication().cancelAllLocalNotifications()
}
}
关于swift - 如何防止短背景计时器漂移?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37231748/
这个问题在这里已经有了答案: Integer summing blues, short += short problem (5 个答案) 关闭 7 年前。 版本:Visual Studio Prof
我尝试执行以下代码: public class Test5 { /** * @param args */ public static void main(String[] args) {
这是我的任务,我尝试仅使用简短的 if 语句来完成此任务,我得到的唯一错误是使用“(0.5<=ratio<2 )”,除此之外,构造正确吗? Scanner scn = new Scanner(
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有一个简单的类型 data Day = Monday | Tuesday | Wednesday | Thursday | Friday 我是haskell的新手,所以我写==如下。 (==) :
如何实现“简短”和“详细”两个按钮? “短”应该是默认值,并显示页面的一个版本。单击“详细”按钮后,应显示该页面的另一个版本。 由于这有点难以解释,或许可以看下面的例子。 示例页面: 别管内容 需要j
有没有一种方法可以在 C# 中执行此操作,而无需为现有的每个 var 类型创建一个新方法来重载? $box = !empty($toy) : $toy ? ""; 我能想到的唯一方法是: if (t
我想使用 setInterval 创建一个节拍器。我希望能够达到 300 bpm 这样的高 bpm。即使文件足够短,可以根据需要播放多次,它也很容易 打嗝。此外,许多浏览器都存在短音频文件的问题——S
我们现在有一个正在生产中的应用程序,它会将 IAP 收据发送到我们的服务器,这些收据显然太短,而且我们的服务器没有经过 apple 的验证。 Apple 正确验证的长收据长度为 3192。短收据长度均
例如,许多软件使用的许可证 key 。我曾想过对一个序列进行密码签名,所以我可能有 4 个字节用于 ID,8 个字节用于签名,但我找不到合适的算法。 我需要的是攻击者无法轻易生成,但存储在大约 20
作为一个学生项目,我们正在构建一个机器人,它应该跑完规定的路线并捡起一个木制立方体。它的核心是一台运行 debian 的单板计算机,配备 ARM9,频率为 250MHz。因此 Controller 的
在将 short 转换为字节数组时,我在网上找到了以下解决方案,但不太理解所涉及的逻辑。 //buffer is an array of bytes, bytes[] buffer[position]
如何在 PHP namespace 环境中检查对象的类而不指定完整的命名空间类。 例如,假设我有一个对象库/实体/契约(Contract)/名称。 以下代码不起作用,因为 get_class 返回完整
我有一个 View 范围的托管 bean,其托管属性绑定(bind)到查询字符串参数。 JSF 给了我熟悉的异常: javax.faces.FacesException: Property reset
根据 this post我已经修复了对象检查器。有时代码可以很好地运行 10 个条目,使它们全部正确,有时它可以运行 5 个条目。有时它会导致条目错误。 在获取元素的内部文本时总是会失败。当它的 Y/
我正在编写一组工具,其中 C++ 应用程序使用 AES 加密标准对数据进行编码,而 Java 应用程序对其进行解码。据我所知, key 长度必须为 16 个字节。但是当我尝试使用不同长度的密码时,我遇
我有以下代码: short num_short = 1; int possible_new_short = 1; valid = 1; while (valid) { poss
因此,作为 C 的新手,我遇到了我的第一个 SIGSEGV 错误。它出现在一个简短的 C 程序中,该程序旨在成为“猜数字”游戏。它由一个比较两个数字的自定义函数和一个带有输入的 do-while 循环
我不是严格意义上的初级程序员,但我没有接受过数学以外的正规教育 - 所以这纯粹是业余爱好,可能是业余的。 我最近自己开发了一个算法来解决这个问题,但我想知道是否有任何相对简单的算法明显更高效/更快?
我正在使用短条件来区分记录列表中显示的值。 例如,如果我希望强调 ( ) 标识符大于 100 的客户的姓名,请执行以下操作: {# Displays the identifier of the c
我是一名优秀的程序员,十分优秀!