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
Starting iOS 7 you could set the tint color of your view controller's view so that this tint colow will be propageted to all it's child views. So to set your UITableViewCell's checkmark as purple color (for example), in your viewWillAppear method you need to:
[self.view setTintColor:[UIColor purpleColor]];