如何自动旋转第一个视图仅纵向和第二个视图仅横向模式ios6
我在第一个视图中尝试过这样
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
在第二/详细视图中
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}
-(BOOL) shouldAutorotate{
return YES;
}