views:

39

answers:

2

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

A: 

I guess it's viewDidLoad.

Thanks

ruibm
+4  A: 

The -(void)awakeFromNib method is called after the outlets are connected. There's a good article on it at Cocoa is my Girlfriend

Tom Duckering