我正在使用标签栏控制器在splitview上创建应用。我的问题是,当我在肖像上并隐藏主视图时,我的表单解散了。如果显示当前的表单,有没有办法阻止轮换?
答案 0 :(得分:0)
在您的代码中包含此方法,如果您的表单被解除,您可能需要添加其他方法。这段代码会将您的视图锁定为横向。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight) {
return YES;
} else {
return NO;
}
}