在 FirstViewController 中有一个按钮。按下后,有一个模态转场转到 SecondViewController。FirstViewController 是纵向的,而 SecondViewController 是横向的。在故事板文件中,我将 SecondVC 设置为 Landscape,但 iOS 模拟器不会自动更改它的方向。
有人可以帮我找到自动将 SecondViewController 从 Portait 变为 Landscape 的代码吗?
viewDidLoad
SecondVC 中的声明:
-(void)viewDidAppear:(BOOL)animated {
UIDeviceOrientationIsLandscape(YES);
sleep(2);
santaImageTimer = [NSTimer scheduledTimerWithTimeInterval:0.5
target:self
selector:@selector(santaChangeImage)
userInfo:NULL
repeats:YES];
[santaImageTimer fire];
image1 = YES;
}
任何帮助表示赞赏。