如何将多个 UIElement(uilabel、uiimageview 等)堆叠/z 轴放置在彼此之上?

发布于 2024-09-09 19:34:31 字数 99 浏览 5 评论 0原文

我的屏幕上有几个 UI 元素(以编程方式),并且需要一种有效的方法来为每个子视图提供 z-index 设置,以便我可以将某些元素堆叠在其他元素之上。

有人有解决办法吗?

I've got several UI elements on my screen (programmatically) and am in need of an efficient way to give each subview a z-index setting, so I can stack certain elements over others.

Does anyone have a solution to this?

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

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

发布评论

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

评论(1

原谅过去的我 2024-09-16 19:34:31

简单的 -addSubview: 方法将在其同级视图之上添加新视图。

还有许多方法,例如 bringSubviewToFront:insertSubview:belowSubview: 等,您可以使用它们来操作顺序,这些方法在“管理视图层次结构”下列出UIView 参考

The plain -addSubview: method will add the new view on top of its siblings.

There are also a bunch of methods like bringSubviewToFront:, insertSubview:belowSubview:, etc. that you can use to manipulate the ordering, listed under "Managing the View Hierarchy" in the UIView Reference

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