gpt4 book ai didi

ios - 动画 UIView 离开屏幕然后从底部无休止地离开屏幕

转载 作者:行者123 更新时间:2023-11-28 05:43:53 26 4
gpt4 key购买 nike

我的问题类似于this一。但是,我想要一个 swift 的更新版本,我希望它能无休止地运行。这是我的动画:

bubble.frame.origin = CGPoint(x: 75, y: -120)

UIView.animate(
withDuration: 2.5,
animations: {
self.bubble.transform = CGAffineTransform(translationX: 0, y: self.view.frame.height * -1.3)
}
)

气泡离开屏幕后,我希望它从底部重新出现,并一次又一次地无休止地离开屏幕。

最佳答案

使用 UIViewAnimationOptions 集中的选项:

UIViewAnimationOptions.Repeat

你的代码应该是这样的:

bubble.frame.origin = CGPoint(x: 75, y: -120)
UIView.animate(withDuration: 2.5, options: [UIViewAnimationOptions.Repeat], animations: {
self.bubble.transform = CGAffineTransform(translationX: 0, y: self.view.frame.height * -1.3)
})

关于ios - 动画 UIView 离开屏幕然后从底部无休止地离开屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55620788/

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