- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if ([[UIDevice currentDevice] orientation] == UIInterfaceOrientationIsPortrait(interfaceOrientation))
{
[self isPortraitSplash];
}
else if ([[UIDevice currentDevice] orientation] == UIInterfaceOrientationIsLandscape(interfaceOrientation))
{
[self isLandScapeSplash];
}
return YES;
}
在我的方法isPortraitSplash
中isLandScapeSplash
,我正在设置视图的框架。
当方向改变时,它总是在调用isLandScapeSplash
- 无法调用isPortraitSplash
方法。
谁能告诉我为什么会这样?