I usually use viewDidAppear method to do some UI stuff on the view after it finished appearing and I used this method in various situations were it was very useful, however, I need to do some UI changes on a UITableViewCell after it finished appearing, is there any available method in the SDK that does a similar job like viewDidAppear but for UITableViewCell ?
p.s. willDisplayCell did not work in my case, I need something like didDisplayCell if it really exists.
The method
viewDidLoadis related to UIViewController and its subclasses, so we cannot use this in UITableViewCell, which is a UIView subclass. The solution I used in one of my app is to override thelayoutSubViewsmethod of UITableViewCell, and I delayed the action for some time as below.