我用UIButton
作为钢琴键创造了钢琴般的视图。我应该听什么UIControlEvents
在按钮获取并失去突出显示状态时获得回调?
我试图创建UIButton
的子类并为highlighted
添加属性观察器,它工作正常。但是有时候我需要从代码中手动设置突出显示的状态,因为没有办法判断事件是用户还是应用程序启动,所以真的搞砸了。
为了模仿钢琴键的行为,我使用了以下UIControlEvents
:
self.addTarget(self, action: "pressed", forControlEvents: [.touchDown])
self.addTarget(self, action: "released", forControlEvents: [.touchDragExit, .touchUpInside, .touchUpOutside, .touchCancel])
获得突出显示状态:UIControlEventTouchDown
失去突出状态:UIControlEventTouchDragOutside