viewController内の以下メソッドを修正する。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// もとのはコメント化
//return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
// 以下の設定だとポートレート固定になる
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}