Firdous
Firdous

Reputation: 4652

Process flow of an iOS Application

where can i find the whole process flow of an iPhone application, like there are bootstrap processes in web applications that define the flow of processes, calls to predefined hooks, and tells that in which orders functions would be called? functions like:

viewDidLoad()
viewWillAppear()
viewDidAppear()

Searching for the process flow.

Upvotes: 2

Views: 1946

Answers (2)

Piyush Kashyap
Piyush Kashyap

Reputation: 1965

Take a look at this image ,It shows complete life cycle of app

http://www.cocoanetics.com/files/UIApplication_Delegate_post_4_v121.jpg

Upvotes: 1

Related Questions