Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BeauNouvelle/85d1632f1b207738a985ee1a3cf54e98 to your computer and use it in GitHub Desktop.
Save BeauNouvelle/85d1632f1b207738a985ee1a3cf54e98 to your computer and use it in GitHub Desktop.
// Add to UIButton extension.
public func touchUpInside(closure: @escaping UIButtonTargetClosure) {
targetClosure = closure
addTarget(self, action: #selector(UIButton.closureAction), for: .touchUpInside)
}
// Useage
let button = UIButton()
button.touchUpInside { _ in
// Do stuff.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment