作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的应用程序中使用了以下代码。
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/
我是一名优秀的程序员,十分优秀!