iOS 点击状态栏自动返回scrollview顶部的拦截
2021-07-07 本文已影响0人
里克尔梅西
在ScrollToTop的代理中,拦截事件处理
//ScrollView Delegate
- (BOOL)scrollViewShouldScrollToTop:(UIScrollView *)scrollView {
NSLog(@"scrollViewShouldScrollToTop");
[self.tableView.mj_header beginRefreshing];
return YES;
}
参考:
https://blog.csdn.net/lea__dongyang/article/details/73885255