krajobraz siły ios 7

Próbowałem zastosować metody wymuszania krajobrazu na jednym z moich poglądów:

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationLandscapeLeft;
}

- (BOOL)shouldAutorotate{
    return YES;
}

Żadna z nich nie działała. Zauważ, że testuję na symulatorze i na iPadzie.

Dzięki

questionAnswers(3)

yourAnswerToTheQuestion