whenTapped is a Swift Library that is adding a closure to your UIButton, UILabel, UITextField, UIImageView.
pod 'whenTapped',:git => 'https://github.com/VincentNarbot/whenTapped.git'import whenTapped//UIButton
letbutton=UIButton()
button.whenTapped{print("button was pressed")}
//UILabel
letlabel=UILabel()
label.whenTapped{print("label was pressed")}...