简体   繁体   中英

reloadData for a Table View in a View Controller

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 ViewController

@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 ?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM