Skip to content

Instantly share code, notes, and snippets.

@stremsdoerfer
Last active January 15, 2017 17:59
Show Gist options
  • Save stremsdoerfer/9ab5ef095c49afddb9816aaff50c9e59 to your computer and use it in GitHub Desktop.
Save stremsdoerfer/9ab5ef095c49afddb9816aaff50c9e59 to your computer and use it in GitHub Desktop.
class CustomCell: UITableViewCell {
@IBOutlet weak var customButton: UIButton!
var onButtonTap:(()->Void)?
@IBAction func buttonTap(){
onButtonTap?()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment