我正在使用 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-推荐答案 strong>
在你的助手类中;
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/
|