Under iOS 5, it seemed that a UITableViewCell
subclass's willMoveToSuperview:
method was called every time the cell was used or reused, but under iOS 6, it seems that it's only called when the cell is initially created and used, not when a cell gets reused. Can anyone verify this difference? Is this a bug?
What method should I be using to do cell setup inside the UITableViewCell
subclass that will get called when the cell is reused in both iOS 5 and iOS 6?