Reputation: 470
I want to know the sequence in which default or predefined methods ( such as viewDidLoad applicationDidFinishLaunching etc) are called in program execution in a navigation based application.
Upvotes: 1
Views: 164
Reputation: 6102
See a life cycle for a view controller
Everything else depends on the sequence and methods (IB or through code) of instantiating of root view controllers.
Upvotes: 1