标签:city org with velocity elf ima amp res www
UIView.animateWithDuration(0.5, delay: 0.0, usingSpringWithDamping: 0.3, initialSpringVelocity: 0.0, options: UIViewAnimationOptions.CurveEaseInOut, animations: { () -> Void in
//在这里面处理你的空间frame
self.pressGoodsBtn.frame = CGRect(x: (SCREEN_WIDTH-200)/3, y: SCREEN_HEIGH-55-100-15, width: 100, height: 100)
self.pressCouponBtn.frame = CGRect(x: ((SCREEN_WIDTH-200)/3)*2+100, y: SCREEN_HEIGH-55-100-15, width: 100, height: 100)
}) { (_) -> Void in
//这是动画执行完后执行的的地方。若要想在动画执行完再执行什么可以在这里操作。
}
http://www.renfei.org/blog/ios-8-spring-animation.html 这里面对各个参数说的很详细可供参考
标签:city org with velocity elf ima amp res www
原文地址:http://www.cnblogs.com/caodedi-88/p/6253231.html