• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 以编程方式将方向从横向更改为纵向模式 xamarin IOS

[复制链接]
菜鸟教程小白 发表于 2022-12-13 01:39:20 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap