美文网首页
UITableView 使用技巧

UITableView 使用技巧

作者: NJKNJK | 来源:发表于2018-09-12 15:20 被阅读0次

    分割线

    1.隐藏掉多余的分割线。

    _tableView.tableFooterView = [UIView new];

    2.隐藏掉cell的分割线

     _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    3.设置分割线顶头

    _tableView.layoutMargins = UIEdgeInsetsZero;

    _tableView.separatorInset = UIEdgeInsetsZero;

    cell.layoutMargins = UIEdgeInsetsZero;

    4.设置分割线的颜色

    _tableView.separatorColor= [UIColor redColor];

    5.设置间距,这里表示separator离左边和右边均10像素   

    self.tableView.separatorInset =UIEdgeInsetsMake(0,10,0, 10);

    6. 设置分割线的样式 

    self.tableView.separatorStyle =UITableViewCellSeparatorStyleSingleLine;

    相关文章

      网友评论

          本文标题:UITableView 使用技巧

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