UIView之animateWithDuration
一、animateWithDuration的函数原型
animateWithDuration有多个函数,分别为
class func animateWithDuration(duration: NSTimeInterval, animations: () -> Void, completion: ((Bool) -> Void)?) // delay = 0.0, options = 0
class func animateWithDuration(duration: NSTimeInterval, delay: NSTimeInterval, options: UIViewAnimationOptions, animations: () -> Void, completion: ((Bool) -> Void)?)
class func animateWithDuration(duration: NSTimeInterval, animations: () -> Void)
class func animateWithDuration(duration: NSTimeInterval, delay: NSTimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIViewAnimationOptions, animations: () -> Void, completion: ((Bool) -> Void)?)
具体的参数内容还不太清除,这个后面再去逐个的去了解了解
目前使用了第一个函数
class func animateWithDuration(duration: NSTimeInterval, animations: () -> Void, completion: ((Bool) -> Void)?) // delay = 0.0, options = 0
这个函数中第一个参数是动画的时间,第二个参数是一个函数,类型为void,写结束时候的结果(具体还需要调研了解),第三个参数的类型我有点迷糊,应该是swift语言还没学好吧。。。接下来也会了解清楚,嗯,第三个参数的作用是动画结束时候会执行那里的函数。