katanya di AppController.mm ganti ini:
// Set RootViewController to window [window addSubview: viewController.view];
jadi gini:// Set RootViewController to window if ( [[UIDevice currentDevice].systemVersion floatValue] < 6.0) { // warning: addSubView doesn't work on iOS6 [window addSubview: viewController.view]; } else { // use this mehod on ios6 [window setRootViewController:viewController]; }kemudian ubah orientasi pada kelas RootViewController.mm di method shouldAutorotateToInterfaceOrientation.
Enjoy!