- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation { return (toInterfaceOrientation == UIInterfaceOrientationPortrait); } - (BOOL)shouldAutorotate { return NO; } - (NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationMaskPortrait;//只支持這一個方向(正常的方向) }
若是在UIViewController上,則在UIViewController對應的.m文件中加入三個函數便可。函數
若是在UITabBarController上,則在UITabBarController對應的.m文件中加入三個函數便可。
code
若是在UINavigationController上,則在UINavigationController對應的.m文件中加入三個函數便可。blog