大家晚上好!我正在开发一个 Portait 方向的应用程序,如果有一种方法可以让我将仅一个视图的方向更改为剩余的陆地空间,而不会弄乱应用程序的其余部分,那么我正在徘徊。
我试着回来
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
//return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
但没有运气......在IB中,视图控制器的方向设置为横向但是当我运行应用程序时,它一直以纵向模式出现......还尝试设置
[[UIApplication sharedApplication]setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];
没有运气...
任何帮助将不胜感激。
谢谢你。