支持的方向不限制实际方向

时间:2011-11-30 20:11:01

标签: iphone objective-c ios xcode

我有一款iPad游戏,我只想在横向视图中看到。我从目标摘要中选择了横向视图,并获得了代码

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return YES;
}

在我的第一个viewcontroller中添加到navController中。但是,通过改变目标的方向,我能看到的唯一效果不是它如何被旋转,而是它首先加载的方向。有人有任何想法吗?谢谢!

1 个答案:

答案 0 :(得分:2)

试试这个:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}