gpt4 book ai didi

iphone - UITableView 和 numberOfRowsInSection 崩溃

转载 作者:行者123 更新时间:2023-12-03 21:22:49 25 4
gpt4 key购买 nike

尝试从 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.
}
}

由于某种原因,当尝试删除行时,应用程序崩溃了。

谢谢!

最佳答案

你应该只做

if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source.
[alertsArray removeObjectAtIndex:indexPath.row];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}

也就是说,首先更正您的模型,然后调用deleteRowsAtIndexPaths:

顺便说一句,您将在控制台窗口中找到相应的错误消息。

此外,当您没有更改其他内容时,通常不需要在此处使用 reloadData

关于iphone - UITableView 和 numberOfRowsInSection 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3178646/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com