我用什么方法知道用户何时在我的UITableView中点击了“添加新行”绿色加按钮?
答案 0 :(得分:4)
答案 1 :(得分:2)
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleInsert) {
//your code here
NSLog(@"user tapped insertion control");
}
}