I ask because I've just downloaded two example swift projects: one is a todo-list, the other is a contacts list, both use UIViewController
class conformed to UITableViewDelegate/UITableViewDataSource
protocols instead of UITableViewController
. Is there anything different between those two practice at all?
in code:
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {...}
vs.
class ViewController: UITableViewController {...}