通过 Xcode 中的按钮更改图像显示顺序
我想改变 xcode 中两个重叠图像的顺序,我该怎么做? 我正在使用按钮 id 来调用数组并显示两个重叠的 UIimagesviews 。现在我想改变它的顺序,但我不知道我可以使用哪种方法。
谢谢。
I want to change the order of two overlaped imagens in xcode, how can i do that?
I am working with button ids to call arrays and display two overlaped UIimagesviews . Now I want to change its order but I cant figure out which method I may use.
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的选择是按照不同的顺序将视图添加到其超级视图,或者操作视图底层
层
的zPosition
属性,以便您想要的层位于顶部具有比您想要的更高的zPosition
。Your options are either to add the views to their superview in a different order or to manipulate the
zPosition
property of the views' underlyinglayer
s so that the layers you want on top have higherzPosition
s than the ones you want beneath.