私はすでにランドスケープ モード用のアプリを開発しましたが、現在、クライアントはランドスケープ モードとポートレート モードの両方でビルドするよう求めています。
横向きビューを縦向きビューに変換するにはどうすればよいですか?
今、ランドスケープビューにこのコードを使用しています:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
私を助けてください....
よろしくお願いします:)