I have a nib file with its class (UIView
) assigned to it in the inspector, So when I need to show that view I loaded it using the method :
loadNibNamed:owner:options:
So if I have to do some initialization when I load the nib, what is the way to know that in the nib's UIView
class like the initWithNibName:bundle
For the UIViewController
?
I appreciate any help :)
You want to use a combination of
initWithCoder:
andawakeFromNib
which are each called at different times during the instantiation (the former) and configuration (the latter).