如何在组表中的行中添加绿色+按钮,请参阅图像
答案 0 :(得分:3)
- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.row == 1)//type your condition here
{
return UITableViewCellEditingStyleDelete;
}
else{
return UITableViewCellEditingStyleInsert;
}
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
//type your code here
}else if(editingStyle == UITableViewCellEditingStyleInsert){
//type your code here
}
}
答案 1 :(得分:1)