4

在 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;
}
4

0 回答 0