自己紹介

自分の写真
最近、iphoneアプリをリリースしました。
UxU
無料アプリですので、是非遊んで下さい。 第二弾アプリ:工場夜景写真集 今後も色々なアプリをリリースしていく予定です。
次は、コスプレ or 漫画 or 騎乗日記

2011年5月6日金曜日

iphoneアプリ横向き設定にする方法

iphoneアプリを横向き設定にする方法をまとめておきます。



1.UIViewControllerを継承したクラスで、[shouldAutorotateToInterfaceOrientation]
で指定向きにのみ対応させる。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
// Homeボタンが右の横向きにはYes。それ以外の3方向にはNoを返す。
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
// 他の向きも対応する場合は、他も書く
}

2. plist上に設定する。
2-1. Initial interface orientation:Landscape(right home button)
2-2. Supported interface orientations:Landscape(right home button)

0 件のコメント:

コメントを投稿