-(void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
for (UIView *view in [tableView subviews]) {
if ([view isKindOfClass:[NSClassFromString(@"UITableViewIndex") class]]) {
// 設置字體大小
[view setValue:HFont(13) forKey:@"_font"];
//設置view的大小
view.bounds = CGRectMake(0, 0, 30, 30);
//單單設置其中一個是無效的
}
}
}
如果修改字體大小,顏色,背景等都無法滿足你的需求,這里有一個第三方的,仿微信通訊錄樣式的右邊索引 https://github.com/TalkingJourney/SCIndexView