I am trying to create a UITableView index for faster scrolling of a large UITableView, I have the index showing up on the right but when I try to s
UITableView
You might try:
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index { return index; }
It's hard to tell what's wrong without the rest of your controller, but I think that should work.