疯了,到底要怎样才能横屏!

来源:互联网 发布:香港 mac pro 关税 编辑:程序博客网 时间:2024/04/29 01:56
我在 info.plist 里面设置了,竖屏(Top)和横屏(RIght)
且在 ViewController 里面添加了以下代码:

- (BOOL) shouldAutorotate{
    return TRUE;
}
- (NSUInteger) supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskLandscapeRight;
}
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{
    return toInterfaceOrientation==UIInterfaceOrientationLandscapeRight;
}


为什么这个 ViewController 还是不能横屏。怎么这么难啊?android 的容易多了。
0 0