场景:
在一个导航的tableviewcontroller中点击单元格,然后跳转到另外一个统计图表数据的viewcontroler。原因是这个数据比较多,本人在这个统计图表数据的viewcontroler中只支持横屏。点击返回按钮就自动为竖屏了。
谢谢。
在一个导航的tableviewcontroller中点击单元格,然后跳转到另外一个统计图表数据的viewcontroler。原因是这个数据比较多,本人在这个统计图表数据的viewcontroler中只支持横屏。点击返回按钮就自动为竖屏了。
谢谢。
解决方案
20
– (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:UIDeviceOrientationLandscapeLeft] forKey:@”orientation”];
}
[super viewWillAppear:animated];
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:UIDeviceOrientationLandscapeLeft] forKey:@”orientation”];
}