У меня есть UINavigationController (Parent), который выдвигает UIViewController (Child).Я понимаю, что оба должны поддерживать:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return YES; //(interfaceOrientation == UIInterfaceOrientationPortrait);
}
Однако я не хочу, чтобы родитель мог поворачиваться в альбомную ориентацию.Как я могу применить это?
ОБНОВЛЕНИЕ:
Мой родитель был обновлен до:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if (interfaceOrientation != UIInterfaceOrientationLandscapeRight ||interfaceOrientation != UIInterfaceOrientationLandscapeLeft )
return NO;
else
return YES;
}
Но теперь ребенок не вращается.