I would like to run some logic in my Controller class once all IBOutlets get assigned. What method do I need to override in the Controller class to receive this event?
Thanks, Rui
I would like to run some logic in my Controller class once all IBOutlets get assigned. What method do I need to override in the Controller class to receive this event?
Thanks, Rui
The -(void)awakeFromNib
method is called after the outlets are connected. There's a good article on it at Cocoa is my Girlfriend