ios - 在状态栏相差 1 个像素处启动 UIView
<p><p>针对不同的 iPhone 设备,例如 iPhone X 和 iPhone 8。我想使用 <strong><em> 在距离状态栏 1px 的位置开始我的 <strong><em>UIView</em></strong>自动调整大小</em></strong>。我能够通过在 iPhone X 之前启动 <strong><em>UIView</em></strong> y 轴 21px 来解决这个问题。我怎样才能动态地实现这个东西,以便 <strong><em>UIView</em></strong> 总是在所有 iphone 的状态栏之后开始。</p>
<p>在 iPhone 8 plus 上看起来不错</p>
<p> <a href="/image/gcAas.png" rel="noreferrer noopener nofollow"><img src="/image/gcAas.png" alt="enter image description here"/></a> </p>
<p>在 iPhone X 上看不到 1px 的差异,因为 View 是从顶部看的</p>
<p> <a href="/image/bBwSz.png" rel="noreferrer noopener nofollow"><img src="/image/bBwSz.png" alt="enter image description here"/></a> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><strong>iPhone X 更新</strong></p>
<p>以前所有 iPhone 设备的状态栏高度都是 20pt。但在 iPhone X 上,它是 44pt。所以在实现你的 UI 时要小心。</p>
<p>如果您想在主线程中更新 UI 或在 viewWillAppear 中调用。</p>
<pre><code>CGFloat getstatusBarHeight = [ statusBarFrame].size.height;
CGRect modifyFrame = your1PxFrame.frame ;
modifyFrame.origin.y =getstatusBarHeight ;
your1PxFrame.frame = modifyFrame;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在状态栏相差 1 个像素处启动 UIView,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/46639013/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/46639013/
</a>
</p>
页:
[1]