uiviewanimation – UIView动画选项使用Swift

uiviewanimation – UIView动画选项使用Swift,第1张

概述如何在UIView动画块中将UIViewAnimationOptions设置为.Repeat: UIView.animateWithDuration(0.2, delay:0.2 , options: UIViewAnimationOptions, animations: (() -> Void), completion: (Bool) -> Void)?) Swift 3 几乎和以前一样: UI 如何在UIVIEw动画块中将UIVIEwAnimationoptions设置为.Repeat:
UIVIEw.animateWithDuration(0.2,delay:0.2,options: UIVIEwAnimationoptions,animations: (() -> VoID),completion: (Bool) -> VoID)?)
Swift 3

几乎和以前一样:

UIVIEw.animate(withDuration: 0.2,delay: 0.2,options: UIVIEwAnimationoptions.repeat,animations: {},completion: nil)

除了你可以省掉完整的类型:

UIVIEw.animate(withDuration: 0.2,options: .repeat,completion: nil)

您仍然可以合并选项

UIVIEw.animate(withDuration: 0.2,options: [.repeat,.curveEaseInOut],completion: nil)

Swift 2

UIVIEw.animateWithDuration(0.2,options: UIVIEwAnimationoptions.Repeat,completion: nil)UIVIEw.animateWithDuration(0.2,options: .Repeat,options: [.Repeat,.CurveEaseInOut],completion: nil)
总结

以上是内存溢出为你收集整理的uiviewanimation – UIView动画选项使用Swift全部内容,希望文章能够帮你解决uiviewanimation – UIView动画选项使用Swift所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1057309.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存