美文网首页
tableview设置group 距离顶部有距离

tableview设置group 距离顶部有距离

作者: 赤焰军少帅林殊 | 来源:发表于2017-12-06 14:37 被阅读10次
    两个方法要同时调用
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
    {
        return 0.1;
    }
    
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
    {
        UIView* sectionview=[UIView alloc]init];
    
        return sectionview;
    }
    
    1. 尾部距离也是两个方法

    相关文章

      网友评论

          本文标题:tableview设置group 距离顶部有距离

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