I would like to add a table view to a view in interface builder and then be able to control that table view from a table view controller.
I can add the table with IB without any troubles, but how can I link the table view with a table view controller?
In your IB file insert 2 objects:
UITableView(as subview) andUITableViewControllersubclass (as an object). Setdatasourceanddelegateoutlets and you are ready to go! 🙂