我希望我的 UIViewController 可以自动旋转,但只是它,而不是其他任何 uiviewcontroller。这个 UIViewController 呈现在 UINavigationController 中,它不能自动旋转。此代码适用于 iOS 5 和 4,但不适用于 iOS6。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return (YES);
}
- (BOOL)shouldAutorotate
{
return (YES);
}
- (NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationMaskAll);
}
谢谢帮助:)