I have the following:
- UITableViewController
- UITableView
- Custom UITableViewCell subclass
I used a .xib file for the cell, which is a CustomCell
subclass. This custom cell handles IBActions for some touch events on the cell's buttons.
I'd like to reference the ViewController and some of its variables from the cell.
How am I supposed to access the UITableViewController from the UITableViewCell class?