If you are adding subviews to your cell programmatically and in custom cell if you have something like this:
[self addSubview:valueTF];
then replace it with
[self.contentView addSubview:valueTF];
all subviews to a cell should be added to contentView to receive the delayed callbacks.
Topic:
UI Frameworks
SubTopic:
UIKit
Tags: