iPhone SDK,如何让按钮响应双击?
在我的 iPhone 应用程序中,我有按钮,我应该让它们响应双击。
我该怎么做呢?
In my iphone app, I've got buttons and I should make them respond to a double click.
How should I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须
在 initWithFrame 中使用 UIGestures (如果您使用 Interface Builder,则必须在 initWithCoder 中使用)
然后添加方法
You have to use UIGestures
In the initWithFrame (or initWithCoder if you're using Interface Builder)
Then add the methods
你需要使用手势,试试这个 -
You need to use gestures, Try this -
尝试在按钮定义中添加以下内容:-
其中,buttontappedtwice 是一个方法,当您点击此特定按钮两次时将调用该方法...干杯
Try adding following to button defination :-
where buttontappedtwice is a method which will be called when u tap this particular button twice... Cheers
试试这个。
Try this.