I want to have as a minimum the iOS6 in my app. I tried to create a tabbar application with the sample project provided by Mono. I tried to delete the ShouldAutorotateToInterfaceOrientation method and replaced it by
public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations ()
{
return UIInterfaceOrientationMask.Landscape;
}
I did it for both ViewController, but the orientation is still Portrait. I also tried to override ShouldAutorotate and returned true, but did not help also. What do I have to do that my app is only in landscape mode available?
I also tried to set the deployment target to iOS6, but I can only switch up to 5.1 in the drop down list.
Any suggestions?
EDIT: Something with my installation was totally wrong. Because I could not select ios6 as deployment target, nothing worked. After a new clean installation everything works.
Like @svn said the
Info.plist
states which orientations your application support. This can be further customized (e.g. restricted) by overridingGetSupportedInterfaceOrientations
.But there's also (new in iOS 6) PreferredInterfaceOrientationForPresentation which can (and should be) overridden.
More details, including iOS6 specific features, are available in Apple documentation.
That sounds like the Xcode you're using does not have the 6.0 SDK. See my comment on your question on how you can check what's being used by MonoDevelop to build your application.