gpt4 book ai didi

ios - 将 UIButton 旋转 360 度

转载 作者:IT王子 更新时间:2023-10-29 05:16:16 28 4
gpt4 key购买 nike

我一直在尝试使用以下代码运行将我的 UIButton 旋转 360 度的动画:

UIView.animateWithDuration(3.0, animations: {
self.vineTimeCapButton.transform = CGAffineTransformMakeRotation(CGFloat(M_PI*2))
self.instagramTimeCapButton.transform = CGAffineTransformMakeRotation(CGFloat(M_PI*2))
})

但是,它不会旋转 360 度,因为 UIButton 已经在该位置。

如何将 UIButton 旋转 360 度?

最佳答案

可以使用一个技巧:先开始旋转180度,然后再旋转360度。使用 2 个延迟动画。试试这个。

UIView.animate(withDuration: 0.5) {
self.view.transform = CGAffineTransform(rotationAngle: .pi)
}

UIView.animate(
withDuration: 0.5,
delay: 0.45,
options: UIView.AnimationOptions.curveEaseIn
) {
self.view.transform = CGAffineTransform(rotationAngle: 2 * .pi)
}

关于ios - 将 UIButton 旋转 360 度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34102331/

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