spring动画(swift)

来源:互联网 发布:软件体系架构 pdf 编辑:程序博客网 时间:2024/06/05 19:46

spring动画(swift)

by 伍雪颖

loginButton.center.y+= 30
loginButton.alpha= 0
UIView.animateWithDuration(1, delay: 0.5,
    usingSpringWithDamping:
0.5,
    initialSpringVelocity:
0,
    options: .AllowUserInteraction,
    animations: {
   
self.loginButton.center.y-= 30
   
self.loginButton.alpha= 1
    }, completion:nil)

1 0
原创粉丝点击