压缩索引部分是一个很好的视图

时间:2013-09-29 22:08:48

标签: iphone uitableview ios7

在iOS7 SDK中加载我的应用程序。我的tableview的索引列表现在已经压缩了:

enter image description here

我似乎无法追踪可能发生的事情。我没有在任何地方设置尺寸或长度。下面是我分配标题的代码,但我猜测问题必须在其他地方?

- (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;
}

0 个答案:

没有答案