xcode 为我们的游戏添加一个计数器
我们如何向我们的应用程序添加计数器。例如:当图像1触摸图像2时计数++;例如,如果 count =10 则结束游戏。
How can we add a counter to our application. For example : when image 1 touch image 2 count++; and for example if count =10 finish the game .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到视图控制器的界面中:
将其添加到视图控制器的实现中:
将透明按钮添加到视图中,并使用选择器 imagePressed: 添加一个操作。
当这个答案没有用时,也许你可以改进你的问题。请发布一些代码!
Add this to you the interface of your view controller:
Add this to the implementation of your view controller:
Add a transparent button to your view and add an action with selector imagePressed:.
When this answer isn't useful maybe you could improve your question. And please post some code!
我有时会使用两种方法来做到这一点......
这非常简单,但你也可以这样做......
我不知道这是否有帮助,但这是一个开始。
干杯!
I sometimes use 2 ways to do this...
thats pretty straight forward but you can also do it this way...
I don't know if this helped, but it's a start.
Cheers!