HALLO ichWie zeige ich einen View Controller im Querformat an?
nur für eine View-Controller für Querformat-Modus unter Verwendung von Code- (BOOL)shouldAutorotate {
return NO;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeRight; // or Right of course
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
Es funktioniert gut, aber wenn ich zu Portrait drehen Dann ist es dreht und i Code unten bin mit dem Blick für die Präsentation
[self presentViewController:vc animated:YES completion:nil];
wo ich fehle Vielen Dank im Voraus
die gleiche Frage gestern gefragt –
kann ich wissen, ob Ihre App für Hoch- oder Querformat gemacht wird? @Bittoo – Madhu
@Madhu beide Aber ein View-Controller in der Landschaft – Bittoo