如何在方向上进行自动更改?

时间:2010-01-20 13:56:53

标签: iphone

我想根据我的申请改变方向,以便我能做到这一点。实际上我是这个领域的新人。

1 个答案:

答案 0 :(得分:0)

在UIViewController中包含以下内容:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return YES;
}

修改:如果您想限制可接受的方向,而不是return YES;例如,您可以使用return UIInterfaceOrientationLandscapeLeft | UIInterfaceOrientationPortrait;