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:
Is it not because your NSLog
is trying to print out the actual label object. Should you not have
NSLog(@"%@", tmpVC.myLabel.text);
In Response to the added information: Your other issue would appear to be that you have linked an NSString
to your label. You have to link it to a UILabel
. So where you declare your myLabel
var, change it to UILabel *myLabel
, and the same for any matching property.