UITableView部分索引字体系列

时间:2014-06-01 18:17:59

标签: uitableview

我知道可以更改部分索引的字体颜色和背景颜色...但我想知道是否可以更改字体系列...我正在尝试使用图标族来处理某些部分。

tableView.sectionIndexBackgroundColor = [UIColor clearColor];


- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
    NSMutableArray *indexTitles = [[NSMutableArray alloc] init];

    for (NSString *title in [self getAllSectonTypes]) {
        if ([title isEqualToString:@"{numeric}"]) {
            [indexTitles addObject:@"#"];
        } else if ([title isEqualToString:@"{favorites}"]) {
            // CHANGE FONT FAMILY
        } else if ([title isEqualToString:@"{mostrecent}"]) {
            // CHANGE FONT FAMILY
        } else {
            [indexTitles addObject:title];
        }
    }

    return indexTitles;
}

0 个答案:

没有答案