在 iOS6 中遇到自动旋转问题。我在 App Delegate 中添加了这个:
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return (UIInterfaceOrientationMaskAll);
}
并在视图控制器中添加了这个:
- (BOOL)shouldAutorotate
{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskPortrait);
}
我仍然不能让它只是肖像,而不是风景!非常感谢您的帮助。