2
votes
How do I set UITableViewCellSelectionStyle property to some custom color?
Override didSelectRowAtIndexPath: and draw a UIView of a color of your choosing and insert it behind the UILabel inside the cell. I would do it something like this:
UIView* selected …
