UITableViewDelegate 协议的函数
//显示每一个单元格之前 被激活,返回想要缩进的index
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
{return indexPath.row % 2 ;
}
UITableViewDelegate 协议的函数
//显示每一个单元格之前 被激活,返回想要缩进的index
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
{