Change color on checkmark in UITableView

后端 未结 15 2246
故里飘歌
故里飘歌 2020-12-07 22:31

Could someone be so kind to show me how to change the color on the checkmark in UITableView?

I have searched but don\'t seem to get it to work.

Cheers

15条回答
  •  一生所求
    2020-12-07 23:06

    The UIAccessoryTypeCheckmark (right side) inherits background color of its tableview.

    self.tableView.backgroundColor = [UIColor clearColor];
    

提交回复
热议问题