gpt4 book ai didi

iphone - UITableView 不滚动到单元格

转载 作者:太空狗 更新时间:2023-10-30 03:47:41 26 4
gpt4 key购买 nike

我正在尝试将我的表格 View 滚动到第二个单元格:

[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:0] 
atScrollPosition:UITableViewScrollPositionNone
animated:NO];

我得到错误:

 *** Terminating app due to uncaught exception 'NSRangeException', reason: '-[UITableView scrollToRowAtIndexPath:atScrollPosition:animated:]: section (1) beyond bounds (0).

'

我的 tableview 有 30 个单元格,没有显示任何部分。

最佳答案

当我在单节表中收到相同的错误消息时,我通过创建一个包含行和节的 NSIndexPath 来修复它:

NSIndexPath *ip = [NSIndexPath indexPathForRow:itemCurrentlyPlaying inSection:0];

不容易找到,但是这里记录了相关的便捷构造函数:

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/NSIndexPath_UIKitAdditions/Reference/Reference.html

关于iphone - UITableView 不滚动到单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2910503/

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