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.
我经常看到这种情况,您在顶部有剖面视图,然后当您向上滚动并且下一个剖面视图与顶部的剖面视图到达/重叠时,它会合并。我该怎么做这样的事情?有这样做的图书馆吗?
这是所有 UITableViews 都支持的默认行为(您不需要自定义库)。您必须实现 UITableView 的 sectionIndexTitlesForTableView 方法:
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView { }