iphone - How to remove from this Debugger warning -


possible duplicate:
getting “using two-stage rotation animation” warning uiimagepickercontroller

in iphone app have login screen after loging in navigating class ( have tab barcontroller 5 tabs here)

like programmatically creating tabbar

 tabbarcontroller = [[uitabbarcontroller alloc] init]; nsmutablearray *arrcontrollers = [[nsmutablearray alloc] initwithcapacity:5]; //add punchclock tab view controller punchclock* objpunchclock = [[punchclock alloc] initwithtabbar]; navigationcontroller = [[uinavigationcontroller alloc] initwithrootviewcontroller:objpunchclock]; navigationcontroller.navigationbar.tintcolor = [uicolor browncolor]; [arrcontrollers addobject:navigationcontroller]; [navigationcontroller release]; [objpunchclock release]; tabbarcontroller .viewcontrollers = arrcontrollers; [arrcontrollers release]; [self.view addsubview:[tabbarcontroller view]]; 

after logging in while navigating class getting debugger warning

2012-07-07 12:09:27.988 workforce[1475:207] using two-stage rotation animation. use smoother single-stage animation, application must remove two-stage method implementations. 2012-07-07 12:09:28.074 workforce[1475:207] using two-stage rotation animation not supported when rotating more 1 view controller or view controllers not window delegate 

what mean,,,how remove warning? please me out

i have no idea error message means when such specific error message, helpful search the entire error message in quotes see if else has encountered it.

apparently have. please report , tell means.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

c++ - Accessing inactive union member and undefined behavior? -

php - Get uncommon values from two or more arrays -