I've tried a variety of the layoutMargins
code bits and it still doesn't seem to have any effect to fix this weirdness.
My subclassed UITableViewCell
was missing [super layoutSubviews]
. (oops)
- (void)layoutSubviews
{
[super layoutSubviews]; // <-- important!
...