如何在单个按钮上应用多个事件?
我有一个按钮,我想在其上设置多个事件。当用户第一次触摸按钮时,我会更改背景图像,当用户再次触摸按钮时,我会重置第一张图像。用按钮怎么做?
提前致谢...
I have a button on which i want to set multiple event. When user touch button first time then i have change background image and when user again touch button then reset first image. How do that with button?
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您不必有多个事件,只需调用一个函数并在此函数中更改背景(具有某种要显示哪个背景的指示器 ->
i
此处)You don't have to have multiple events, just call one function and in this function change the background (having some kind of indicator which background to display ->
i
here)尝试以下操作
Try the following
在您的buttonTouchUPInside 方法中调用上述方法。
Call above method in your buttonTouchUPInside method.