ios - 以编程方式将方向从横向更改为纵向模式 xamarin IOS
<p><p>我正在使用 Xamarin MVVMCross 技术开发一个应用程序,并想问一个关于 InterfaceOrientation 选项的问题:应用程序的所有 ViewController 都支持所有方向,但应该只使用纵向模式。
当我以纵向模式从其他人那里转到该 ViewController 时,由于我的 AppDelegate.cs 中的方法,我能够将我的纵向 ViewController 保持在纵向模式:</p>
<pre><code>
public UIInterfaceOrientationMask GetSupportedInterfaceOrientations(UIApplication application, IntPtr forWindow)
{
if (this.RestrictRotation)
return UIInterfaceOrientationMask.All;
else
return UIInterfaceOrientationMask.Portrait;
}
</code></pre>
<p>但是,当设备处于 LandscapeLeft(LandscapeRight) 方向时,当我转到我的 PortraitviewController 时,不会调用来自 AppDelegate.cs 方法的 GetSupportedInterfaceOrientations 并且该 ViewController 以横向模式打开。
有没有一种方法可以仅针对 Xamarin IOS 中的一个 ViewController 以编程方式将方向从横向模式更改为纵向模式?</p>
<p>谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在你的助手类中; </p>
<pre><code>public static void LockOrientation(UIInterfaceOrientationMask uIInterfaceOrientationMask, UIInterfaceOrientation uIInterfaceOrientation)
{
if (UIApplication.SharedApplication.Delegate != null)
{
CommonUtils.LockOrientation(uIInterfaceOrientationMask);
UIDevice.CurrentDevice.SetValueForKey(new NSNumber((int)uIInterfaceOrientation), new NSString("orientation"));
}
}
</code></pre>
<p>在 AppDelegate.cs 中</p>
<pre><code> //Set the orientation for rest of the app
public UIInterfaceOrientationMask OrientationLock = UIInterfaceOrientationMask.All;
public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations(UIApplication application, UIWindow forWindow)
{
return OrientationLock;
}
</code></pre>
<p>现在只需在您想要锁定/更改方向的任何位置调用 LockOrientation 方法。</p>
<p>例子:</p>
<pre><code>CommonUtils.LockOrientation(UIInterfaceOrientationMask.Portrait, UIInterfaceOrientation.Portrait);
</code></pre></p>
<p style="font-size: 20px;">关于ios - 以编程方式将方向从横向更改为纵向模式 xamarin IOS,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/44534207/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/44534207/
</a>
</p>
页:
[1]