I want to add a subview to the UITableCellView
class. However, non of the provided views in the class seem to be able to do exactly what I was looking for.
I basically want to add my own background view, filling the whole cell. However, if I replace the backgroundView
, the style from the grouped table view layout isn't displayed anymore. If I add a subview to backgroundView
, the subview is not shown at all. If I add a subview to the contentView
, I can't draw behind the accessory icon.
What am I missing?