如何获得applicationFrame减去UINavigationBar的高度?

发布于 2024-09-17 21:33:41 字数 355 浏览 2 评论 0 原文

我把它放在 loadView 中并且它可以工作:

CGRect navFrame = [[UIScreen mainScreen] applicationFrame];
navFrame.size.height -= self.navigationController.navigationBar.frame.size.height;
UIImageView *imageView = [[UIImageView alloc] initWithFrame:navFrame];

但是是否有一个像 applicationFrame 这样的变量可以让 applicationFrame 减去 UINavigationBar 的高度?

I put this in loadView and it works:

CGRect navFrame = [[UIScreen mainScreen] applicationFrame];
navFrame.size.height -= self.navigationController.navigationBar.frame.size.height;
UIImageView *imageView = [[UIImageView alloc] initWithFrame:navFrame];

But is there a variable like applicationFrame that gives the applicationFrame minus the UINavigationBar height?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花海 2024-09-24 21:33:41

看起来好像没有,因为 Three20 所做的事情与我所做的类似。在TTGlobalNavigatorMetrics.m中,他们这样做:

CGRect TTNavigationFrame() {
  CGRect frame = [UIScreen mainScreen].applicationFrame;
  return CGRectMake(0, 0, frame.size.width, frame.size.height - TTToolbarHeight());
}

http://github.com/facebook/ Three20/blob/master/src/Three20UINavigator/Sources/TTGlobalNavigatorMetrics.m#L53

马特

Looks like there isn't since three20 does something similar to what I did. In TTGlobalNavigatorMetrics.m, they do:

CGRect TTNavigationFrame() {
  CGRect frame = [UIScreen mainScreen].applicationFrame;
  return CGRectMake(0, 0, frame.size.width, frame.size.height - TTToolbarHeight());
}

http://github.com/facebook/three20/blob/master/src/Three20UINavigator/Sources/TTGlobalNavigatorMetrics.m#L53

Matt

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文