Matthew Kruk
04/14/2022, 8:22 PMval tap = UITapGestureRecognizer(
target = this,
action = NSSelectorFromString("Tapped")
)
tap.delegate = this
tap.numberOfTapsRequired = 1u
this.addGestureRecognizer(tap)
this.setUserInteractionEnabled(true)
@ObjCAction
private fun Tapped() {
notifyClicked()
}