美文网首页
UITableView 的小知识

UITableView 的小知识

作者: Ma_Crystal | 来源:发表于2016-07-01 15:16 被阅读0次

    1、使tableView默认的分割线距离左、右侧各10个像素

    if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {

    [tableView setSeparatorInset:UIEdgeInsetsMake(0, 10, 0, 10)];

    }

    2、取消tableView中cell的横线

    self.tableView.separatorStyle=UITableViewCellSeparatorStyleNone;

    3、使tableview默认多余的分割线隐藏

    self.tableView.tableFooterView = [UIView alloc] init];

    相关文章

      网友评论

          本文标题:UITableView 的小知识

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