尝试从UITableView中删除行时遇到问题: UITableView从NSMutableArray获取行数:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [alertsArray count];
}
我以这种方式向NSMutableArray添加对象:
- (void)saveButton:(id)sender {
[alertsArray addObject:
[self.tableView reloadData];
}
使用此代码我允许删除行:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source.
[self.tableView deleteRowsAtIndexPaths:[NSMutableArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[alertsArray removeObjectAtIndex:indexPath.row];
[tableView reloadData];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view.
}
}
出于某种原因,当尝试删除行时,应用程序崩溃。
谢谢!
答案 0 :(得分:1)
你应该只做
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source.
[alertsArray removeObjectAtIndex:indexPath.row];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
也就是说,首先更正您的模型,然后调用deleteRowsAtIndexPaths:
您将在控制台窗口中找到相应的错误消息,BTW。
另外,一般来说,当你没有改变其他东西时,不需要在这里使用reloadData
。