Hi: I want to display a section index in an UITableView with a search bar in the table view header (not section header). But the index strip is now overlapping the search ba
I add empty strings to indexes array:
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView { NSMutableArray *array = [NSMutableArray arrayWithArray:_sortedKeys]; [array insertObject:@"" atIndex:0]; [array insertObject:@"" atIndex:0]; return array; }