OStack程序员社区-中国程序员成长平台

标题: ios - 以编程方式将方向从横向更改为纵向模式 xamarin IOS [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 01:39
标题: ios - 以编程方式将方向从横向更改为纵向模式 xamarin IOS

我正在使用 Xamarin MVVMCross 技术开发一个应用程序,并想问一个关于 InterfaceOrientation 选项的问题:应用程序的所有 View Controller 都支持所有方向,但应该只使用纵向模式。 当我以纵向模式从其他人那里转到该 ViewController 时,由于我的 AppDelegate.cs 中的方法,我能够将我的纵向 View Controller 保持在纵向模式:

[Export("application:supportedInterfaceOrientationsForWindow:")]
public UIInterfaceOrientationMask GetSupportedInterfaceOrientations(UIApplication application, IntPtr forWindow)
{
    if (this.RestrictRotation)
        return UIInterfaceOrientationMask.All;
    else
        return UIInterfaceOrientationMask.Portrait;
} 

但是,当设备处于 LandscapeLeft(LandscapeRight) 方向时,当我转到我的 Portraitview Controller 时,不会调用来自 AppDelegate.cs 方法的 GetSupportedInterfaceOrientations 并且该 View Controller 以横向模式打开。 有没有一种方法可以仅针对 Xamarin IOS 中的一个 View Controller 以编程方式将方向从横向模式更改为纵向模式?

谢谢



Best Answer-推荐答案


在你的助手类中;

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"));
            }
        }

在 AppDelegate.cs 中

    //Set the orientation for rest of the app
public UIInterfaceOrientationMask OrientationLock = UIInterfaceOrientationMask.All;

            public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations(UIApplication application, UIWindow forWindow)
            {
                return OrientationLock;
            }

现在只需在您想要锁定/更改方向的任何位置调用 LockOrientation 方法。

例子:

CommonUtils.LockOrientation(UIInterfaceOrientationMask.Portrait, UIInterfaceOrientation.Portrait);

关于ios - 以编程方式将方向从横向更改为纵向模式 xamarin IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44534207/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4