Мой код работает на версиях, кроме 13. Но в версии 13 код не работает для альбомной ориентации. Мой код следующий.
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
- (NSUInteger)supportedInterfaceOrientations
#else
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
#endif
{
NSLog(@"Mask Orientaion begin");
return UIInterfaceOrientationMaskLandscapeRight;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
NSLog(@"Orientaion begin");
return UIInterfaceOrientationLandscapeRight;
}
Пожалуйста, помогите мне. Спасибо