美文网首页
iOS 解决UITableView留白问题

iOS 解决UITableView留白问题

作者: iCHENKE | 来源:发表于2017-06-24 15:36 被阅读342次
    1.如果tableview的style是plain模式:
    设置self.automaticallyAdjustsScrollViewInsets = NO;
    
    2. 如果是group模式:
    -  (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
        return section ==0?0.1f:8.0f;// 0.1f:防止tableView顶部留白一块
    }
    

    相关文章

      网友评论

          本文标题:iOS 解决UITableView留白问题

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