I have one tableview and each cell contains one button. It\'s working pretty well all iOS versions but 7. I don\'t know what\'s going on. The cell is constructed in one xib
I have been get the same problem. The reason is
self.contentView.Frame.size.height
is always 44.
There is a suggestion you can set your self.contentView.Frame to self.frame at the overwrite method - (void)layoutSubviews the problem will be solved
self.contentView.Frame
self.frame
(void)layoutSubviews