Hello,
I've created a subclass of UIButton to allow me to have a checkbox on the iPhone. This checkbox is part of a subclass of UITableViewCell.My question is how I can attach an action to the button being pressed and have that method implemented in the tableView controller?
I tried using the addTarget:action: method but this doesn't seem to work. One option is to use the App Delegate but this isn't good programming practice.
All advice is welcome.
Bart