0
我有一個視圖層次結構嵌入導航控制器。視圖旋轉時在子視圖控制器中調用哪些方法?此代碼位於導航控制器的其中一個子視圖中,並且這些方法都不會被調用!在UINavigationController的子視圖中調用的旋轉方法?
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
NSLog(@"1");
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad){
return true;
}else{
if(toInterfaceOrientation == UIInterfaceOrientationPortrait){
return YES;
}
}
return false;
}
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{
[self loadCorrectElements];
NSLog(@"2");
}
謝謝!