我正在使用 CAKeyframeAnimation 为 View 层的 opacity 设置动画,当应用程序进入后台时,动画被删除,但我需要使 View 的 alpha 为和动画一样,我应该怎么做:
view.alpha = view.layer.presentationLayer.opacity
???
谢谢!
更新:
我有三个相互重叠的标签,我使用关键帧动画来为它们的 opacity 设置不同的关键帧值(对于 opacity )来模拟交叉淡入淡出动画。问题是当应用程序进入后台时,动画被删除(根据 https://forums.developer.apple.com/thread/15796 ),因此它们都具有 alpha 1 并相互重叠,这就是我想将 View 与其表示层同步的原因。
Best Answer-推荐答案 strong>
如果目标是在应用进入后台时捕获 opacity ,您可以为 UIApplicationDidEnterBackground 添加观察者,捕获不透明度,取消动画,然后设置alpha 。例如,在 Swift 中:
class ViewController: UIViewController {
@IBOutlet weak var viewToAnimate: UIView!
private var observer: NSObjectProtocol!
override func viewDidLoad() {
super.viewDidLoad()
observer = NotificationCenter.default.addObserver(forName: .UIApplicationDidEnterBackground, object: nil, queue: .main) { [weak self] notification in
if let opacity = self?.viewToAnimate.layer.presentation()?.opacity {
self?.viewToAnimate.layer.removeAllAnimations()
self?.viewToAnimate.alpha = CGFloat(opacity)
}
}
}
deinit {
NotificationCenter.default.removeObserver(observer)
}
// I'm just doing a basic animation, but the idea is the same whatever animation you're doing
@IBAction func didTapButton(_ sender: Any) {
UIView.animate(withDuration: 10) {
self.viewToAnimate.alpha = 0
}
}
}
如果您的目标是即使应用程序终止也要记住它,那么您需要将其保存在持久存储中。但是,如果您的目标只是在应用程序暂停和/或在后台运行时设置 alpha ,那么以上就足够了。
关于ios - CAAnimation:将 View 的 alpha 与表示层的不透明度同步,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46336033/
|