iphone - whats the different between nibNameOrNil and ViewDidLoad methods? -
What is the difference between initWithNibName and ViewDidLoad methods? Can I use them both?
initWithNibName
- that is you specified Call to create a visual controller from the nib file.
ViewDidoadload
- The system calls to your controller after the viewer loads the load, in memory you apply this method to initialize some additional (Which has not been done in the Nib file)
Comments
Post a Comment