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.
我设计了一个支持 ios 4.3 的应用程序,并从“支持的设备方向”中删除了所有内容,只有肖像处于活动状态。
问题是,当我在手机中模拟应用程序时,它支持所有方向,而我的应用程序看起来与横向方向不一致。
如何强制它不支持横向?
在您的视图控制器调用中
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return UIInterfaceOrientationIsPortrait(interfaceOrientation); }
强制它不要在横向模式下旋转。您还需要确保所有父视图都具有 autoresizesSubviews = YES。