iPhoneで初期表示を横向きにする方法

ここから

// Override to allow orientations other than the default portrait orientation.

  • (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

ここまで


UIInterfaceOrientationLandscapeRight
これにより、アプリ起動時にHomeボタンが右側に来るようになる。