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.