美文网首页
TableView分隔线

TableView分隔线

作者: 小丑余 | 来源:发表于2016-06-13 18:44 被阅读32次

    TableView分隔线顶头显示

    - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
    {
        if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {
            [tableView setSeparatorInset:UIEdgeInsetsZero];
        }
        if ([tableView respondsToSelector:@selector(setLayoutMargins:)]) {
            [tableView setLayoutMargins:UIEdgeInsetsZero];
        }
        if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
            [cell setLayoutMargins:UIEdgeInsetsZero];
        }
    }
    

    TableView分隔线颜色

            [tableView setSeparatorColor:[UIColor myColor]];
    

    相关文章

      网友评论

          本文标题:TableView分隔线

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