标签:
- (void)killScroll { CGPoint offset = scrollView.contentOffset; offset.y -= 1.0; [scrollView setContentOffset:offset animated:NO]; }
参考文章:http://stackoverflow.com/questions/3410777/how-can-i-programmatically-force-stop-scrolling-in-a-uiscrollview
iOS how to stop a scrolling scrollView
原文地址:http://www.cnblogs.com/ficow/p/5794145.html