UITableView/UIScrollView 滚动到项目索引
我正在尝试调用
[tableView scrollToItemAtIndex: [tableView indexForCell: firstVisibleCell] atScrollPosition: UITableViewScrollPositionTop animated:YES];
强制我的表格“捕捉”到第一个可见项目。 的调用
- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView
这工作正常,但我只收到对“何时必须完成滚动” (文档中已说明)。无论如何,我是否可以获得 firstVisibleCell 的偏移量,以便我可以进行比较以查看是否需要滚动?
I'm trying to call
[tableView scrollToItemAtIndex: [tableView indexForCell: firstVisibleCell] atScrollPosition: UITableViewScrollPositionTop animated:YES];
To force my table to 'snap' to the first visible item. This works fine, but I only get a call to
- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView
When scrolling had to be completed (which is stated in the document). Is there anyway that I can get the offset of the firstVisibleCell so I can do a comparison to see if scrolling is required?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用方法
- (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath
:Use the method
- (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath
: