nvalid update: invalid number of rows in section 0.
由于TableView中的行数和数组中的不一致造成的,
NSIndexPath *index = [NSIndexPath indexPathForRow:indexPath inSection:0];
[self.modelArray removeObjectAtIndex:indexPath];
[self.tableView deleteRowsAtIndexPaths:@[index] withRowAnimation:UITableViewRowAnimationBottom];
网友评论