I am loading a UITableViewCell from a nib using [[NSBundle mainBundle] loadNibNamed:...]. Now I want to do some post-initialization work programmatically, before the tableviewcell get used in my code. Where should I put this code, as I can't seem to do it in the initWithCoder methods, as the label objects in the class are still nil (so can't set anything). When are the UILabels in the tableviewcell initialized in the first place (they are all defined as IBOutlets)?I am loading a UITableViewCell from a nib using