通过使用 Xcode4.5 我开发了通用应用程序,我只想在横向模式下制作 iPad 版本。
在这里我累了
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad && UIInterfaceOrientationIsLandscape(interfaceOrientation))
{
return YES;
} else if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone && UIInterfaceOrientationIsPortrait(interfaceOrientation))
{
return YES;
}
return NO;
}
尽管我已经尝试过上面的代码,但它确实出现在纵向模式下。