Sorry the basic question, but this bugs me for a while now.
I create a details view from a UITable and try to dynamically set its labels, but they are not updating:
Did you @synthesize your myLabel property in myViewController.m? You should be able to do something like:
@synthesize
myLabel
myViewController.m
tmpVC.myLabel.text = tmpObj.myTitle;