現在、急速なピッチでiPadのアプリ開発もすすめているのですが、その中で、アプリを起動させた時に、横向きから始めたい場合があります。
そんなときは、下記のように組めばオッケーです。
- (BOOL)shouldAutorotateToInterfaceOrientation :(UIInterfaceOrientation)interfaceOrientation { //return (interfaceOrientation == UIDeviceOrientationLandscapeLeft)でもオッケー return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); } |
実際に試したところきちんと向きが横になりました。
0 コメント:
コメントを投稿