UITableView Cell 间隔线颜色长度

    _tableView.separatorStyle = YES;

    [_tableView setSeparatorColor:[UIColor redColor]];

    UIEdgeInsets inset;

    inset.left = 50;

    [_tableView setSeparatorInset:inset];

你可能感兴趣的:(UITableView Cell 间隔线颜色长度)