码迷,mamicode.com
首页 > 其他好文 > 详细

TableView的删除操作

时间:2015-07-21 21:49:40      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:

 

 

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{

    

    if (editingStyle != UITableViewCellEditingStyleDelete) return;//非编辑删除模式

    //先修改模型中的数据

    [persons removeObjectAtIndex:indexPath.row];

 

    //刷新表格

//下面的方法必须是模型里的行数和tableView中的行数必须一致

//    [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];

    

    [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];

    

}

 

 

 

- (IBAction)remove:(UIBarButtonItem *)sender {

    

    //进入编辑模式

    BOOL result = !self.tableView.isEditing;

    [self.tableView setEditing:result animated:YES];

 

}

TableView的删除操作

标签:

原文地址:http://www.cnblogs.com/yuyu-2012/p/4665532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!