在行之前添加+按钮

时间:2010-12-20 10:34:12

标签: iphone uitableview

如何在组表中的行中添加绿色+按钮,请参阅图像

alt text

2 个答案:

答案 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)