gpt4 book ai didi

ios - 在状态栏 1 个像素的差异处启动 UIView

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:36:33 28 4
gpt4 key购买 nike

针对不同的 iPhone 设备,如 iPhone X 和 iPhone 8。我想使用 在与状态栏相差 1px 处启动我的 UIView自动调整大小。我能够通过在 iPhone X 之前启动 UIView y 轴 21px 来解决这个问题。我如何动态地实现这个问题以便 UIView 总是在所有 iphone 的状态栏之后开始。

在 iPhone 8 plus 上看起来不错

enter image description here

在 iPhone X 上看不到 1px 的差异,因为 View 是从顶部看的

enter image description here

最佳答案

iPhone X 更新

以前所有 iPhone 设备的状态栏高度都是 20pt。但在 iPhone X 上,它是 44pt。因此,在实现您的 UI 时要小心。

如果您想在主线程中更新 UI 或在 viewWillAppear 中调用。

CGFloat getstatusBarHeight = [[UIApplication sharedApplication] statusBarFrame].size.height;
CGRect modifyFrame = your1PxFrame.frame ;
modifyFrame.origin.y = getstatusBarHeight ;
your1PxFrame.frame = modifyFrame;

关于ios - 在状态栏 1 个像素的差异处启动 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46639013/

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