我正在尝试在找到位置后在UITableViewController
中重新加载数据。这也意味着在viewDidLoad
方法之后。我的班级正在使用此界面扩展UITableViewController
:
@interface RootViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource, CLLocationManagerDelegate>
在实现中我尝试使用
重新加载数据[self.view reloadData];
reloadData
似乎不是UITableViewController或视图的方法,因为我收到错误:
Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments
有人可以发布一些代码,说明如何重新加载扩展的表视图吗?
答案 0 :(得分:49)
您必须在UITableView
上[self.tableView reloadData];