Custom UITableView section index

后端 未结 9 778
暗喜
暗喜 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:45

    self.tableView.sectionIndexColor = [UIColor brownColor];
    self.tableView.sectionIndexBackgroundColor = [UIColor clearColor];
    self.tableView.sectionIndexTrackingBackgroundColor = [UIColor blueColor];
    

提交回复
热议问题