在UIView
的标头文件中,我看到了这个API。
+(void)animateWithDuration:(NSTimeInterval)duration
delay:(NSTimeInterval)delay
options:(UIViewAnimationOptions)options
animations:(void (^)(void))animations
completion:(void (^)(BOOL finished))completion;
在它是一个完成块,为什么(BOOL finished)
参数传递给块?
在我的有限测试中,它总是TRUE
什么时候可能是假的?