码迷,mamicode.com
首页 > 其他好文 > 详细

有关Tableview滑动出现的问题

时间:2017-09-27 18:59:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:off   问题   有关   else   tab   tableview   cti   解决   static   

#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滑动出现的问题

标签:off   问题   有关   else   tab   tableview   cti   解决   static   

原文地址:http://www.cnblogs.com/jiangxue-iOS/p/7602971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!