UITableView Style UITableViewSty

作者: 我们只是GitHub的搬运工 | 来源:发表于2017-06-27 19:02 被阅读25次

    UITableViewStylePlain##

    1.有多段时 段头停留(自带效果)

    2.没有中间的间距和头部间距(要想有的重写UITableViewCell \UITableViewHeaderFooterView里面的setFrame方法)

    //扩展:让段头不停留(取消粘性效果)
    
    - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    
        CGFloat sectionHeaderHeight = 30;
    
        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);
    
        }
    
    }
    

    UITableViewStyleGroup

    注意:去掉头部和中间间隔

    //1.设置标头的高度为特小值 (不能为零 为零的话[苹果]
    UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 0.001)];
    view.backgroundColor = [UIColor redColor];
    self.tableView.tableHeaderView = view;
    
    //2.写代理方法(中间的留白其实是段尾的高度 代理的作用设置段尾的高度 返回值也不能为0)
    -(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
    {
      return 0.01f;
    }
    

    其他方法也能实现

    //特殊的处理方法也能实现该效果
    //1.设置tableView 的 contentInset 属性
    self.tableView.contentInset = UIEdgeInsetsMake(-44, 0, 0, 0);
    
    //2.重写UITableViewHeaderFooterView的
    -(void)setFrame:(CGRect)frame{
    frame.size.height+=10;
    [super setFrame:frame];
    
    }
    
    

    相关文章

      网友评论

        本文标题:UITableView Style UITableViewSty

        本文链接:https://www.haomeiwen.com/subject/ctnecxtx.html