码迷,mamicode.com
首页 > 其他好文 > 详细

tableView 如何设置仅某一行cell可以编辑删除

时间:2015-04-14 16:38:09      阅读:89      评论:0      收藏:0      [点我收藏+]

标签: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;

}


tableView 如何设置仅某一行cell可以编辑删除

标签:uitableview   cell   

原文地址:http://blog.csdn.net/u013020103/article/details/45043987

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!