Hello I have a view controller that loads from an xib i created. It has two toolbars and a table view in that.
I add this too the header file in the ViewControl开发者_JS百科ler
@interface FilterViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
When I do
[self.tableView reloadData]
It does throws up an error and does not build.
Just making your UIViewController
conform to UITableViewDataSource
and UITableViewDelegate
does not automatically give you a tableView
reference.
You need to create a tableView IBOutlet
and connect it in Interface Builder.
Also, why not just inherit UITableViewController
instead of a UIViewController
?
精彩评论