I have a standard UITableViewCell
on which I add a few extra views to in order to create a custom look. One of these such views is a UILabel that I've put a border and background color on, in order for it to look sort of like a separate bubble. When a user taps on the cell, I want it to still highlight, but only on where this UILabel
is, not the entire cell (it looks ugly when it highlights the whole cell). How can I do this?
Anything with the selection style of the cell seems to only change the color or style, but I want to change the area of the cell that is highlighted.
Thanks in advance.