Method call sequence changed in iOS 6.0 and iOS 5.0

I am running one application for ios 6.0 and ios 5.0, but several methods are called in a different sequence for both versions. I do not understand what the problem is. This is the console magazine for iOS 6.0. Two-stage rotation animation is deprecated. This app should use smoother one-stage animation.

2012-12-15 18:20:23.111 Testl3675:22803] ADDRESPONSE - ADDING TO MEMORY ONLY: http://gsp1.apple.com/pep/gcc 2012-12-15 18:20:23.670 Test[3675:1d903] View did load 2012-12-15 18:20:23.724 Test[3675:1d903] Download Notification---------- 2012-12-15 18:20:23.773 Test[3675:1d903] Loaded explore view 2012-12-15 18:20:23.793 Test[3675:1d903] IntegrationManager initialized 

And here is the ios 5.0 console log

 2012-12-15 18:29:44.828 Test[3760:15e03] IntegrationManager initialized 

Does anyone know why this is happening?

+4
source share
1 answer

I received this message, and that was because in

 -(void) viewDidLoad { [super viewDidLoad]; // my implementation } 

WRONG.

To fix this, I did the following: - (void) viewDidLoad {// my implementation [super viewDidLoad]; }

+3
source

All Articles