gpt4 book ai didi

swift - UIViewAnimationOptions.CurveEaseIn 在协调动画中不起作用

转载 作者:搜寻专家 更新时间:2023-11-01 05:44:02 26 4
gpt4 key购买 nike

我正在开发 tvOS 应用程序。

在我的应用程序中,我有一个 UICollectionView。在焦点上,我正在使用协调动画。在那个动画里面我有这段代码:

UIView.animateWithDuration(1.0, delay: 0.0, options: UIViewAnimationOptions.CurveEaseIn, animations: {
self.bg.image = finalImage
self.bg.alpha = 1.0
}, completion: nil)

但它似乎没有使用 curveEaseIn 动画选项。

它直接改变了 alpha,这很奇怪。我哪里错了?

最佳答案

对不起。忘记发布答案。

我在完成这样的协调动画时确实为 imageview 设置了动画

   self.bg.alpha = 0.0
coordinator.addCoordinatedAnimations({ //code for coordinated animation}, completion: { _ in

UIView.animateWithDuration(1.0, delay: 0.0, options: UIViewAnimationOptions.CurveEaseIn, animations: {
self.bg.image = self.finalImage
self.bg.alpha = 1.0
}, completion: nil)})

关于swift - UIViewAnimationOptions.CurveEaseIn 在协调动画中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38569070/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com