我在 info.plist 里面设置了,竖屏(Top)和横屏(RIght)
且在 ViewController 里面添加了以下代码:
为什么这个 ViewController 还是不能横屏。怎么这么难啊?android 的容易多了。
且在 ViewController 里面添加了以下代码:
- (BOOL) shouldAutorotate{
return TRUE;
}
- (NSUInteger) supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscapeRight;
}
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
return toInterfaceOrientation==UIInterfaceOrientationLandscapeRight;
}
为什么这个 ViewController 还是不能横屏。怎么这么难啊?android 的容易多了。