如何将多个 UIElement(uilabel、uiimageview 等)堆叠/z 轴放置在彼此之上?
我的屏幕上有几个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的
-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