在iOS7之前,我们通过将UITableViewIndexSearch
添加到部分索引标题中,在UITableView索引的顶部添加了一个放大镜图标。
通过拖动到部分索引中的放大镜图标,tableView可以使用以下代码滚动到searchBar:
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
NSInteger resultIndex = [self getSectionForSectionIndex:index];
// if magnifying glass
if (resultIndex == NSNotFound) {
[tableView setContentOffset:CGPointZero animated:NO];
return NSNotFound;
}
else {
return resultIndex;
}
}
但是在iOS 7中,这只会滚动到第一部分而不是搜索栏。
答案 0 :(得分:9)
为了解决这个问题,我们调整了内容偏移量,以考虑iOS 7中引入的UITableView的内容插入:CGPointMake(0.0, -tableView.contentInset.top)
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
NSInteger resultIndex = [self getSectionForSectionIndex:index];
// if magnifying glass
if (resultIndex == NSNotFound) {
[tableView setContentOffset:CGPointMake(0.0, -tableView.contentInset.top)];
return NSNotFound;
}
else {
return resultIndex;
}
}