标签:uitableview cell
当我们使用UITableView的时候,会有这样的情况:我们想要某一条可以编辑删除或不可可以编辑删除,但是tableview默认的是对所有的cell进行设置YES or NO。这时候改怎么办呢,其实我们可以适当使用indexPath
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
NSIndexPath * indexP =[NSIndexPath indexPathForRow:0 inSection:0];
if (indexP == indexPath) {
return NO;
}
return YES;
}
标签:uitableview cell
原文地址:http://blog.csdn.net/u013020103/article/details/45043987