UILabel是UIView的子类,它本身就是UIResponder的子类;因此,绝对有可能制作一个响应触摸的
标签.只需创建UILabel的新子类并实现以下
方法:
– touchesBegan:withEvent:
– touchesMoved:withEvent:
– touchesEnded:withEvent:
– touchesCancelled:withEvent:
所以,如果你想在触摸开始时发生一些事情,你可以在-touchesBegan:withEvent:中进行.
如果创建一个新的子类对你来说过于苛刻,那么我建议按照@JustSid建议并使用UIButton来完成任务.