支持的方向与应用程序没有共同的方向,并且shouldAutorotate在xamarin iOS中返回YES'

时间:2015-03-25 08:03:46

标签: ios xamarin

我的应用仅支持横向模式。当我试图在应用程序中打开图像选择器时,它显示一个异常,如下所示: “支持的方向与应用程序没有共同的方向,并且应该是返回YES” 我试图为shouldAutorotate做出虚假的价值,但没有成功。我坚持这个。有人对此有任何帮助吗?

1 个答案:

答案 0 :(得分:1)

如果您想使用UIImagePickerController作为横向模式,而不是

- (BOOL)shouldAutorotate
{
 return NO;
}

使用此

- (NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskLandscape;
}

但请务必将其检查为:

enter image description here