gpt4 book ai didi

ios - NSMutableRLEArray objectAtIndex:effectiveRange::Out of bounds in populating UITableView

转载 作者:行者123 更新时间:2023-11-28 20:03:22 28 4
gpt4 key购买 nike

我在我的应用程序中使用了以下代码。

NSIndexPath* ipath = [NSIndexPath indexPathForRow:[sectionInfo numberOfObjects]-1 inSection:section];
NSLog(@"ipath %@",ipath);
[self.myTableView scrollToRowAtIndexPath:ipath atScrollPosition: UITableViewScrollPositionTop animated:NO];

然后像这样获取日志

ipath {length = 2, path = 1 - 9}

但是应用程序崩溃并出现如下错误

由于未捕获的异常“NSRangeException”而终止应用程序,原因:“NSMutableRLEArray objectAtIndex:effectiveRange::Out of bounds”

但是如果我像这样评论后运行项目

//[self.myTableView scrollToRowAtIndexPath:ipath atScrollPosition: UITableViewScrollPositionTop animated:NO];

它工作正常。我正在使用 fetchedresultcontroller 来填充 TableView ,并且 indexpath 处的对象不为空。任何帮助都会很明显吗?

最佳答案

使用此代码可能对您有帮助

  UITableViewCell *cell = (UITableViewCell *)[yourTableName cellForRowAtIndexPath:indexPath];
[yourTableName setContentOffset:CGPointMake(cell.frame.origin.x, cell.frame.origin.y) animated:NO];

关于ios - NSMutableRLEArray objectAtIndex:effectiveRange::Out of bounds in populating UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23075227/

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