gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 20:00:45 25 4
gpt4 key购买 nike

我把它放在 loadView 中并且它有效:

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

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

最佳答案

看起来没有,因为 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

马特

关于iphone - 如何获得applicationFrame减去UINavigationBar的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3644352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com