我称之为方法:
+ (void)animateWithDuration:(NSTimeInterval)duration
delay:(NSTimeInterval)delay
options:(UIViewAnimationOptions)options
animations:(void (^)(void))animations
completion:(void (^)(BOOL finished))completion
来自UIScrollView委托方法的:
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView
withVelocity:(CGPoint)velocity
targetContentOffset:(inout CGPoint *)targetContentOffset
所以在iOS 7中一切都很好,我的方法执行,在iOS 6中它开始执行,但它只在tableView停止滚动后显示动画。那么如何在滚动tableView期间在iOS 6中执行这个动画?