使用 Quartz2d 和 Context 插入背景图像?
我用 Quartz2d 编写了一个游戏。我想在游戏中插入背景图像。我尝试使用 view.insertSubView 方法执行此操作,但是背景图像始终放置在其他精灵的顶部。即使使用 sendSubviewToBack 也不能解决这个问题。我想我需要以某种方式将背景图像直接绘制到上下文上?
预先感谢您的帮助,
马丁
I have written a game using Quartz2d. I would like a insert a background image to the game. I have tried doing this using the view.insertSubView method however the background image is always placed on top of the other sprites. Even using sendSubviewToBack does not solve this. I assume I need to somehow draw the background image directly onto the context ?
Thanks in advance for any help,
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用绘制图像
但如果它始终相同,您可能应该在 UIView 下方添加一个 UIImageView 来绘制所有游戏^^(但不是像您尝试的那样在视图中,而是在超级视图中)
You can draw an image with
But if it's always the same you should maybe add a UIImageView below your UIView which draw all your game ^^ (but not in the View like you tried, but in the superview)