Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个支持纵向、横向左侧、横向右侧界面方向的应用程序。但是在我的应用程序中,有一些视图控制器我只想拥有肖像。这意味着,当您旋转此视图控制器时,不应该发生任何变化。我试着用这张图片来描述。图片
请帮助我,这对我的项目很重要:)
请在以下链接中查看我的答案。
某些视图的 Xcode iphone 方向支持
我想它会帮助你..
尝试这个::
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { if (interfaceOrientation==UIInterfaceOrientationPortrait) { return YES; } return NO; }
希望能帮助到你!!