29,048
社区成员
发帖
与我相关
我的任务
分享
NSArray * indexPathArray = [NSArray arrayWithObject:indexPath];
[tableView deleteRowsAtIndexPaths:indexPathArray withRowAnimation:UITableViewRowAnimationFade];
粗心了,把这个代码改一下就可以了。
NSMutableArray * indexPathArray = [NSMutableArray arrayWithObject:indexPath];
[tableView deleteRowsAtIndexPaths:indexPathArray withRowAnimation:UITableViewRowAnimationFade];