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

tabviewcell的删除注意

时间:2016-02-17 23:58:41      阅读:418      评论:0      收藏:0      [点我收藏+]

标签:

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

    if (editingStyle == UITableViewCellEditingStyleDelete) {

      //一定要先删除数组的数据

        [self.array removeObjectAtIndex:[indexPath row]];

        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];

    } else if (editingStyle == UITableViewCellEditingStyleInsert) {

        

    }   

}

//必须实现此方法,才能转化成中文的

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {

    return @"删除";

}

tabviewcell的删除注意

标签:

原文地址:http://www.cnblogs.com/Jusive/p/5196681.html

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