Custom UITableView section index

后端 未结 9 806
暗喜
暗喜 2020-11-27 14:54

Is it possible to customize the UITableView\'s section index? I mean, changing the font style/size, background (which is semitransparent by default) etc. I\'m guessing that

9条回答
  •  生来不讨喜
    2020-11-27 15:43

    its help for ios 6 and ios 7&8

    if ([tableview respondsToSelector:@selector(setSectionIndexColor:)])
    {
    
        if(!IS_IOS6)
        {
    
            tableview.sectionIndexBackgroundColor = [UIColor clearColor];
        }
        tableview.sectionIndexColor = [UIColor whiteColor];
    }
    

提交回复
热议问题