iOS 7中的UITableViewCell separatorInsets

时间:2014-03-19 06:46:11

标签: uitableview ios7

如何以编程方式将表格视图单元格的separatorInsets设置回默认值?我想为一些细胞而不是其他细胞改变它们。

2 个答案:

答案 0 :(得分:1)

使用以下方式:

 if (indexPath.row == {your row number}){
        cell.separatorInset = UIEdgeInsetsMake(0, 15, 0, 0);
    }

在iOS7中,表格视图的分隔符默认为15左边,您可以使用上面的代码根据您的要求进行更改。

答案 1 :(得分:0)

[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];

根据文件,

  

UITableViewCellSeparatorStyleSingleLine   分隔单元在其宽度上有一条线。这是默认值。适用于iOS 2.0及更高版本。