【发布时间】:2016-08-25 09:47:05
【问题描述】:
不幸的是,我发现UIView.animateWithDuration 在您将应用程序最小化到主屏幕后停止,并且在您将其带回前台后不会恢复。
我花了最后一个小时试图弄清楚如何解决这个问题(通过检测背景/前景切换)并最终添加了一个观察者。我做到了,并在控制台中通过调试消息成功检测到它;但是,我确定如何在我的视图中恢复动画。当应用重新加载到前台时,暂停/恢复甚至重新启动动画的正确方法是什么?
ViewController.swift
class ViewController: UIViewController {
func cameBackFromSleep(sender : AnyObject) {
// Restart animation here or resume?
print ("If you can see this, congrats... observer works :-)")
}
override func viewDidLoad() {
super.viewDidLoad()
// Observer to detect return from background
NSNotificationCenter.defaultCenter().addObserver( self, selector: #selector(ViewController0.cameBackFromSleep(_:)), name: UIApplicationDidBecomeActiveNotification, object: nil )
// Add a label
let label = UILabel(frame: CGRectMake(0, 600 , 200, 200 ))
label.text = "test message"
label.font = UIFont.boldSystemFontOfSize(12)
label.sizeToFit()
self.view.addSubview(label)
// Animation to move label
func animateText() {
UIView.animateWithDuration(2.0, delay: 0.0, options: [ .Autoreverse, .Repeat, .CurveEaseInOut, .BeginFromCurrentState], animations: {
label.alpha = 0.3
label.frame.origin.x = ((global.maxwidth/2) * -1)
}, completion: { finished in
if finished {
label.frame.origin.x = 0.0
}
})
}
// This guy here stops once you minimize the app to background
animateText()
}
}
【问题讨论】:
标签: swift uiview background foreground animatewithduration