I’m just a newbie of Objective C iPhone programming… I see a lot of codes that contains method named “awakeFromNib”.. What does it really mean? how and when and where to call this method?
Thanks…
I’m just a newbie of Objective C iPhone programming… I see a lot of
Share
awakeFromNibis called for objects (views, controllers, etc.) that are being archived in xib/nib files. This basically means that xib/nib was unarchived, all connections (IBActions/IBOutlets) for all objects are made and you have a working object graph.I use it when I have a custom view class that I gave to a certain view in my xib.