如何在UITableView中更改索引的字体大小

时间:2014-01-18 20:03:05

标签: ios uitableview indexing

在我的项目中,我使用sectionIndexTitlesForTableView方法设置索引。但我无法设置索引的字体大小。谁能告诉我如何设置它的大小?

2 个答案:

答案 0 :(得分:0)

如果我理解你的问题,请尝试以下代码:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {

    UILabel *testLabel = [[UILabel alloc] init];
    testLabel.frame = CGRectMake(20, 8, 320, 20);
    testLabel.font = [UIFont boldSystemFontOfSize:18];
    testLabel.text = [self tableView:tableView titleForHeaderInSection:section];

    UIView *headerView = [[UIView alloc] init];
    [headerView addSubview:testLabel];

    return headerView;
}

答案 1 :(得分:0)

我只是在GitHub上找到了一个很棒的项目,可以高度自定义。 MJNIndexView 我希望它会对你有所帮助。