ios – 在loadView方法中计算视图大小的最佳实践

前端之家收集整理的这篇文章主要介绍了ios – 在loadView方法中计算视图大小的最佳实践前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在没有XIB文件的情况下,在loadView方法(在UIViewController中)计算视图大小的最佳实践是什么?

这是我的解决方案:

- (void)loadView {

  //Calculate Screensize
  BOOL statusBarHidden = [[UIApplication sharedApplication] isStatusBarHidden ];
  BOOL navigationBarHidden = [self.navigationController isNavigationBarHidden];
  BOOL tabBarHidden = [self.tabBarController.tabBar isHidden];

  CGRect frame = [[UIScreen mainScreen] bounds];

  if (!statusBarHidden) {
    frame.size.height -= [[UIApplication sharedApplication] statusBarFrame].size.height; 
  }
  if (!navigationBarHidden) {
    frame.size.height -= self.navigationController.navigationBar.frame.size.height; 
  }
  if (!tabBarHidden) {
    frame.size.height -= self.tabBarController.tabBar.frame.size.height; 
  }

  UIView *v = [[UIView alloc] initWithFrame: frame];
  [v setBackgroundColor: [UIColor whiteColor] ];
  [v setAutoresizingMask: UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight ];
  [self setView: v ];
  [v release];      
}

这段代码好吗,还是我应该编辑一些东西?

解决方法

文档建议使用[[UIScreen mainScreen] applicationFrame]获取没有状态栏的屏幕边界
原文链接:https://www.f2er.com/iOS/332056.html

猜你在找的iOS相关文章