最終更新:2017-06-07 (水) 05:36:27 (2507d)  

UIViewController shouldAutorotateToInterfaceOrientation
Top / UIViewController shouldAutorotateToInterfaceOrientation

メモ

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // デバイスが回転したとき、ビューも回転させる
    return YES;
}

後継