UITableView 删除cell 的问题

来源:互联网 发布:qt creator python 编辑:程序博客网 时间:2024/05/03 20:12


 // 错误写法

-(void)deleteTabelCellAction:(NSIndexPath *)indexPath{    [_tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];    [_questionArray removeObjectAtIndex:indexPath.row];}

// 正确写法


-(void)deleteTabelCellAction:(NSIndexPath *)indexPath{    [_questionArray removeObjectAtIndex:indexPath.row];    [_tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];}



0 0