我想根据我的申请改变方向,以便我能做到这一点。实际上我是这个领域的新人。
答案 0 :(得分:0)
在UIViewController中包含以下内容:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
修改:如果您想限制可接受的方向,而不是return YES;
例如,您可以使用return UIInterfaceOrientationLandscapeLeft | UIInterfaceOrientationPortrait;
。