- Condition: I have a custom TableViewCell and I do all things programmatically, no xibs.
- if I want to do a MVC(split the view and the action), To use a TableView or to use a Single TableViewController, which is better for the MVC design?
- As far as I know TableView is just a UI view, and TableViewController can contain some logic. Do that mean, if I want a strict MVC design, I need to use TableView and another object-c file to handle the logic of the TableView, TableViewCell.
I have searched this on stackoverflow, google, and do not have a specific answer or a good understanding.