当用户点击加号按钮插入行时,UITableView会响应

时间:2011-07-11 22:55:55

标签: iphone ios ipad uitableview

我用什么方法知道用户何时在我的UITableView中点击了“添加新行”绿色加按钮?

2 个答案:

答案 0 :(得分:4)

请参阅Table View Programming Guide

的“插入和删除行和章节”部分

答案 1 :(得分:2)

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleInsert) {
    //your code here
    NSLog(@"user tapped insertion control");
    }   
}