I have a bunch of custom UITableCells that I have built in interface builder. These are then associated with their correct cell index and every looks great in my tableView.
Each cell has a few buttons, so rather than creating an outlet for each and every table cell button, is there a way to just "find" any UIButton types within the current cell? I need to do this because I want to give it an IBAction so when you click on the button it does something.
I am just wanting to save code, rather than creating 20 or more IBOutlets.
Ideas?