我遇到了一些布局问题,当我以纵向模式启动我的应用程序然后将其转换为横向模式时,之后打开的视图会返回错误的旋转值。
例如,我在从纵向模式旋转后以横向模式打开一个视图,当我记录旋转时它仍然返回纵向模式:
NSLog(@"%u", [[UIDevice currentDevice] orientation]); // 4
NSLog(@"%f / %f", self.view.frame.size.width, self.view.frame.size.height); // 748.000000 / 1024.000000
当我将 iPad 旋转到纵向模式并返回横向模式时,它会返回正确的尺寸
NSLog(@"%u", [[UIDevice currentDevice] orientation]); // 1
NSLog(@"%f / %f", self.view.frame.size.width, self.view.frame.size.height); // 1024.000000 / 704.000000
我需要做些什么来使新添加的视图适应旋转?