iphone - 允许一个 View 支持多个方向,而其他 View 不支持 iPhone
<p><p>我有一个通过 <code>UITabBarController</code> 控制多个 View 的情况。其中一个 View 是通过 <code>UINavigationController</code> 控制的。该应用程序应该只支持所有 View 的肖像......除了一个单独的 View 。此 View 被推送到导航 Controller 的堆栈中,并且应该允许纵向和横向。</p>
<p>我已经尝试了所有我能想到的解决方案,但要么解决方案不起作用,要么更糟糕的是完全无法预测。 </p>
<p>有人用干净的方式解决了这个问题吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您使用 <code>presentModalViewController</code> 或 <code>pushViewController</code> 呈现的 ViewController 应该支持任何方向,使用此方法:</p>
<pre><code>- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
</code></pre>
<p>使用此方法,当您以横向显示 Controller 时,它也将正确地以横向显示。</p></p>
<p style="font-size: 20px;">关于iphone - 允许一个 View 支持多个方向,而其他 View 不支持 iPhone,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/5735060/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/5735060/
</a>
</p>
页:
[1]