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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)