VERY EASY 只需在
AppDelegate.h内添加如下代码即可
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait;//仅竖屏
return UIInterfaceOrientationMaskLandscape//仅横屏
}