Redundant conformance of TableView to protocol UITableViewDataSource with Xib Files
When a class inherits from UITableViewController
, it by default conforms to UITableViewDataSource
& UITableViewDelegate
and you need not explicitly specify it.
You need to conform to UITableViewDataSource
and UITableViewDelegate
only when you embed a UITableView
in a UIViewController
.