获取 NSRangeException 超出界限崩溃

发布于 2024-12-03 05:30:12 字数 383 浏览 0 评论 0原文

我的这段代码因错误而崩溃 *** 由于未捕获的异常“NSRangeException”而终止应用程序,原因:“*** -[NSArray objectAtIndex:]:索引 0 超出空数组的范围”

在这一行:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    MyObject *myCode = [self.fetchedResultsController objectAtIndexPath:indexPath];
}

我看不出这里有什么问题,它正在从获取中提取数据。

I have this code that is crashing with error *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSArray objectAtIndex:]: index 0 beyond bounds for empty array'

at this line:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    MyObject *myCode = [self.fetchedResultsController objectAtIndexPath:indexPath];
}

I don't see whats wrong here, it is pulling the data from a fetch.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨后彩虹 2024-12-10 05:30:12

答案就在您的帖子中'原因:'...索引 0 超出空数组的范围'。您的 self.fetchedResultsController 是空的,现在您需要调查原因。

注意:每当您修改表视图的基础数据时,您都需要通过调用 -[UITableView reloadData];beginUpdatesendUpdates< 来更新更改/code> 方法然后添加或删除正确的索引路径。

The answer is right in your post 'reason: ' ... index 0 beyond bounds for empty array'. Your self.fetchedResultsController is empty now you need to investigate why.

Note: Whenever you modify the underlying data for a table view you need to update the changes by either calling -[UITableView reloadData]; or the beginUpdates and endUpdates methods then adding or removing the correct index paths.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文