有关Tableview滑动出现的问题
Posted 代号姜姜程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有关Tableview滑动出现的问题相关的知识,希望对你有一定的参考价值。
#pragma mark section不悬停
static CGFloat const sectionHeight = 12.0f;//section的高度值
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGFloat sectionHeaderHeight = sectionHeight;
if (scrollView.contentOffset.y <= sectionHeaderHeight && scrollView.contentOffset.y>=0) {
scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
} else if (scrollView.contentOffset.y >= sectionHeaderHeight) {
scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
}
}
//解决搜索滑动后view下移的问题
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
CGFloat off_y = scrollView.contentOffset.y;
if (off_y < 0) {
self.tableView.contentOffset = CGPointMake(0, 0);
}
}
以上是关于有关Tableview滑动出现的问题的主要内容,如果未能解决你的问题,请参考以下文章
ios 中scrollview上面嵌套tableView,左右滑动出现数据多次刷新的问题
当我将 tableview 添加到 ViewController 时,tableview 未正确添加