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
I found that igraczech's answer is mostly correct, but with iOS 6 or later, you can just set the tint color of the entire tableview and default items will inherit down.
[self.tableView setTintColor:[UIColor someColor]];
This worked for me and allowed me to color in the checkmark.