在iOS7 SDK中加载我的应用程序。我的tableview的索引列表现在已经压缩了:
我似乎无法追踪可能发生的事情。我没有在任何地方设置尺寸或长度。下面是我分配标题的代码,但我猜测问题必须在其他地方?
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
NSMutableArray *titleArray = [[NSMutableArray alloc] init];
if (BookHasSections())
{
NSInteger sections = tableView.numberOfSections;
for (int section = 0; section < sections; section++)
{
switch (section)
{
case 0:
[titleArray addObject:@"1"];
break;
default:
[titleArray addObject:[NSString stringWithFormat:@"%d0",section]];
break;
}
}
}
return titleArray;
}