Robert
Robert

Reputation: 38213

What is the complete list of way to show a View Controller which invokes the view lifecycle (viewDidAppear etc)

I would like to know the complete list of public apple factory methods that will show a view controller and invoke the view lifecycle.

  1. viewDidLoad
  2. viewWillAppear
  3. viewDidAppear
  4. viewWillDissapear
  5. viewDidDissapear
  6. viewDidUnload

Here are the ones I am aware of:

UINavigationController

UITabBarController

UIViewController

Are there any I have missed?

Upvotes: 1

Views: 129

Answers (1)

user470763
user470763

Reputation:

I think -(void)awakeFromNib should be one.

Upvotes: 1

Related Questions