美文网首页
UITabelviewcell常用布局

UITabelviewcell常用布局

作者: smart_xia | 来源:发表于2019-05-16 15:11 被阅读0次

    cell调整

    • 去掉所有cell线条
    self.ShowTabelView.separatorStyle = UITableViewCellSeparatorStyleNone; 
    
    • 去掉多余cell线
    [self.SearchTableView setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]];
    
    • 去掉点选效
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    
    • cell 线条封顶
    cell.separatorInset = UIEdgeInsetsZero;
    cell.layoutMargins = UIEdgeInsetsZero;
    cell.preservesSuperviewLayoutMargins = NO;
    

    喜欢朋友给个赞

    相关文章

      网友评论

          本文标题:UITabelviewcell常用布局

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