iOS how to stop a scrolling scrollView时间:2023-03-09 15:05:29 - (void)killScroll { CGPoint offset = scrollView.contentOffset; offset.y -= 1.0; [scrollView setContentOffset:offset animated:NO]; } 参考文章:http://*.com/questions/3410777/how-can-i-programmatically-force-stop-scrolling-in-a-uiscrollview