ios更改子视图索引运行时
我打算用选项卡做一些菜单,
如果我用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
sendSubviewToBack:
和bringSubviewToFront:
是您正在寻找的方法。如果您想交换两个视图的图层,另一种可能性是exchangeSubviewAtIndex:withSubviewAtIndex:
。sendSubviewToBack:
andbringSubviewToFront:
are the methods you are looking for. Another possibility isexchangeSubviewAtIndex:withSubviewAtIndex:
if you want to exchange the layer of two views.只需在新索引处插入:
Just insert at new index:
方便复制粘贴的 Swift 版本:
Swift versions for easy copy paste: