ios更改子视图索引运行时

发布于 2025-01-05 12:13:52 字数 206 浏览 0 评论 0原文

我打算用选项卡做一些菜单,

如果我用 z 索引订购了选项卡,并且我插入每个选项卡:

insertSubview:(UIView *) atIndex:(NSInteger)

并通过按其顶部的按钮我想更改显示的选项卡,在顶部

如何在运行时更改子视图索引?

谢谢!

i intend to do some menu with tabs,

if I have the tabs ordered with z index, and i insert each tab with:

insertSubview:(UIView *) atIndex:(NSInteger)

and by pressing a button on top of them I want to change the tab shown, on top

how can I change the subview index at runtime?

thanks!

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

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

发布评论

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

评论(3

私藏温柔 2025-01-12 12:13:52

sendSubviewToBack:bringSubviewToFront: 是您正在寻找的方法。如果您想交换两个视图的图层,另一种可能性是 exchangeSubviewAtIndex:withSubviewAtIndex:

sendSubviewToBack: and bringSubviewToFront: are the methods you are looking for. Another possibility is exchangeSubviewAtIndex:withSubviewAtIndex: if you want to exchange the layer of two views.

友谊不毕业 2025-01-12 12:13:52

只需在新索引处插入:

[containerView insertSubview:subview atIndex:newIndex];

Just insert at new index:

[containerView insertSubview:subview atIndex:newIndex];
虚拟世界 2025-01-12 12:13:52

方便复制粘贴的 Swift 版本:

insertSubview(myView1, belowSubview: myView2)

insertSubview(myView2, aboveSubview: myView1)

insertSubview(view: myView1, atIndex: 1)

Swift versions for easy copy paste:

insertSubview(myView1, belowSubview: myView2)

insertSubview(myView2, aboveSubview: myView1)

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