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

Popular posts from this blog

iphone - How do I make a UIPickerView in a UIActionSheet -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -