i\'m making a navigation based application for iphone.
one of my view controllers looks like this:
@interface NewComputerViewController : UIViewContr
Make sure you are setting datasource and delegate for tableView.
tableView.delegate = self;
tableView.dataSource = self;
Make sure the proper delegate and datasource method is implemented in the controller.
In the loadStuff method, call:
[tableView reloadData];
In swift, the same:
tableView.delegate = self
tableView.dataSource = self
tableView.reloadData()