I want complete list of lifecycle functions of view controller with correct sequence.Please any genius.
Please specify with Exact sequence number an
To figure out in what order they are called you could use the debugger and a couple of breakpoints or simply put a NSLog(@"viewDidLoad was called");
call in each method.
Experienced programmers would use NSLog(@"%s", __PRETTY_FUNCTION__);
because it automatically prints the method name and can be copied&pasted faster.
The View Controller Programming Guide can be handy too. It explains all that in detail.