快速检查如何在 iPhone 游戏中实现多个 UIView
我将重组我的游戏以使用多个 uiview。以下流程正确吗?
- 我创建了 6 个 uiview(每个精灵一个)。
- 游戏加载 root uiview。
- root uiview init 方法使用 self addSubview 加载 5 个子视图。
- 在游戏控制器中,我更新每个游戏的每个 uiview。
- 游戏控制器需要一个指向每个 Uiview 实例的指针。
谢谢大家,
马丁
I am going to restructure my game to use multiple uiviews. Is the following flow correct ?
- I create 6 uiviews ( one for each sprite).
- game loads root uiview.
- root uiview init method loads 5 subviews using self addSubview.
- in the game controller I update each uiview each game tic.
- the game controller will need a pointer to each Uiview instance.
Thanks all,
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能会使用主视图的 UIViewController 来加载子视图并将它们添加到主视图,而不是直接在主 UIView 本身中加载子视图。
I would probably use the UIViewController for the main view to load the subviews and add them to the main view, not load the subviews directly in the main UIView itself.