最佳答案
我需要删除我定义的函数中的表的第一行。为了使用deleteRowAtIndexPath
,必须使用定义了section和row的IndexPath
。如何创建这样的indexpath ?
int类型为{1}的数组将崩溃;NSLog消息表明section也需要被定义。
删除单元格的代码:
NSIndexPath *myIP = [[NSIndexPath alloc] indexPathForRow:0 inSection:0];
NSArray *myArray = [[NSArray alloc] initWithObjects:myIP, nil];
// [self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:myArray withRowAnimation:UITableViewRowAnimationFade];
// [self.tableView endUpdates];