tableViewCell 的删除按钮

时间:2023-03-09 15:38:28
tableViewCell 的删除按钮
 - (UITableViewCellEditingStyle)tableView:(UITableView*)tableView editingStyleForRowAtIndexPath:(NSIndexPath*)indexPath
 {
     return UITableViewCellEditingStyleDelete;
 }

 - (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath
 {
     NSLog(@"----");
 }