Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从那一刻顶部的 HeaderView 表中获取一个 NSString 。因为我想在 ScrollViewDidScroll 中实现它,所以当标题视图发生变化时,一个标签会发生变化。
在网上没有找到任何线索如何做到这一点
谢谢!
没有预定义的方法可以让您获得顶部。有一个技巧可以实现它。首先获取所有可见单元格的 indexPath。
NSArray *visible = [tableView indexPathsForVisibleRows]; NSIndexPath *indexpath = (NSIndexPath*)[visible objectAtIndex:0];
现在您可以通过 indexpath.section 获取节值。获取此部分后,您可以从数据数组中获取此部分的字符串。