ios – 横向方向但纵向帧值?

前端之家收集整理的这篇文章主要介绍了ios – 横向方向但纵向帧值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个带有最新SDK的iOS应用程序.

我已将Landscape右方向设置为可用的唯一方向,我对viewController视图有疑问.

这是我的代码

  1. - (void)viewDidLoad
  2. {
  3. [super viewDidLoad];
  4. [[NSNotificationCenter defaultCenter] addObserver:self
  5. selector:@selector(deviceOrientationDidChange:)
  6. name:UIDeviceOrientationDidChangeNotification
  7. object:nil];
  8. [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
  9. }
  10.  
  11. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
  12. {
  13. return (interfaceOrientation != AVCaptureVideoOrientationLandscapeRight);
  14. }
  15.  
  16. - (void)deviceOrientationDidChange:(NSNotification*)notification
  17. {
  18. UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
  19. if (orientation == AVCaptureVideoOrientationLandscapeLeft)
  20. NSLog(@"Orientation: Landscape Left");
  21. else if (orientation == AVCaptureVideoOrientationLandscapeRight)
  22. NSLog(@"Orientation: Landscape Right");
  23. NSLog(@"FRAME: %@",NSStringFromCGRect(self.view.frame));
  24. }

这是我得到的日志:

  1. Orientation: Landscape Right
  2. FRAME: {{0,0},{320,568}}
  3. Orientation: Landscape Right
  4. FRAME: {{0,568}}

我的问题是关于{{0,568}}:

为什么我会得到这些价值?

我认为正确的值是{{0,{568,320}}.

解决方法

我相信框架不会对方向变化做出反应.

编辑:我原来的解决方案过于复杂,无法满足您的需求.如果您正确找到当前方向,那么只要将您的宽度解释为高度(如果您处于横向模式).

猜你在找的iOS相关文章