Reputation: 4652
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
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
Reputation: 180
You may find this useful as well: http://www.cocoanetics.com/2010/07/understanding-ios-4-backgrounding-and-delegate-messaging/
Upvotes: 1