私はこのコードを持っています(Book1はUIViewControllerクラスです)
Book1 *book = [self.storyboard instantiateViewControllerWithIdentifier:@"Book1ID"];
[UIView transitionFromView:self.view toView:book.view duration:1 options:UIViewAnimationOptionTransitionCurlDown completion:nil];
ViewControllerはロードされますが、向きが間違っています。ポートレートビューでロードしますが、ランドスケープでロードしたいです。
Book1にはすでに次のコードがありますが、ビューが読み込まれると、すべての自動回転が失敗するようです。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight;}
このビューをランドスケープにロードするにはどうすればよいですか?