什么控制事件开始和结束突出显示UIButton的状态

问题描述 投票:7回答:2

我用UIButton作为钢琴键创造了钢琴般的视图。我应该听什么UIControlEvents在按钮获取并失去突出显示状态时获得回调?

我试图创建UIButton的子类并为highlighted添加属性观察器,它工作正常。但是有时候我需要从代码中手动设置突出显示的状态,因为没有办法判断事件是用户还是应用程序启动,所以真的搞砸了。

ios swift uibutton uicontrolevents
2个回答
11
投票

为了模仿钢琴键的行为,我使用了以下UIControlEvents

self.addTarget(self, action: "pressed", forControlEvents: [.touchDown])
self.addTarget(self, action: "released", forControlEvents: [.touchDragExit, .touchUpInside, .touchUpOutside, .touchCancel])

1
投票

获得突出显示状态:UIControlEventTouchDown

失去突出状态:UIControlEventTouchDragOutside

© www.soinside.com 2019 - 2024. All rights reserved.