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

UItableView 编辑

时间:2015-04-04 11:51:25      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return @"删除";
}

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return UITableViewCellEditingStyleDelete;
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    debugMethod();
    NSLog(@"%ld,%ld", indexPath.section, indexPath.row);
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        //移除数据源的数据
        NSMutableArray *mutableArr = [self.goodsListArray mutableCopy];
        [mutableArr removeObjectAtIndex:indexPath.row];
        self.goodsListArray = [mutableArr copy];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];//移除tableView中的数据
    }
}

 

UItableView 编辑

标签:

原文地址:http://www.cnblogs.com/apem/p/4391729.html

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