UItableView 表项缩进

来源:互联网 发布:怎么提高淘宝店铺信誉 编辑:程序博客网 时间:2024/05/29 16:47

UITableViewDelegate 协议的函数


//显示每一个单元格之前 被激活,返回想要缩进的index

- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath

{
    return indexPath.row % 2 ;
}
0 0