Xcode 图像 Z 索引
有没有一种方法可以在 xcode 中向图像添加 z 索引,而无需创建新视图。我很确定您可以将图像放入新视图中并为该视图指定 z-index,但我宁愿这样做而不将每个图像放入各自的视图中。此外,它必须以编程方式进行,而不是使用 Interface Builder。我正在努力避免使用IB。
is there a way to add a z-index to an image in xcode without having to create a new view. I'm pretty sure you can put the image into a new view and give the view the z-index, but I would rather do it without putting each image in their own views. Also, it must be programmatically, not using Interface Builder. I'm trying to stay away from using IB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果通过 z-index 您指的是 UIView 中子视图的顺序,则每个子视图都有自己唯一的 z 索引,因此您必须为每个图像创建一个新视图。
If by z-index you are referring to the order of subviews in a UIView, each subview has its own unique z index, so you'd have to create a new view for each image.