通过使用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;
}
即使我尝试过上面的代码,但它确实以人像模式显示。
答案 0 :(得分:0)
-(NSUInteger) supportedInterfaceOrientations {
}
和
-(BOOL) shouldAutoRotate {
}
您可以在此处找到有关此内容的更多信息:iOS 6 auto rotate confusion