2 | - (UITableViewCellEditingStyle)tableView:(UITableView *)tv editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { |
3 | return UITableViewCellEditingStyleDelete; |
8 | - ( void )tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
9 | [self.myDataArr removeObjectAtIndex:indexPath.row]; |
11 | [self.myTableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade]; |
藍天筆記:http:///archives/354
|