I'm trying to load a uitableviewcontroller after a location is found. This also means after the viewdidload method. my class is extending a uitableview controller with this interface:
@interface RootViewController : UITableViewController
{
in the implementation I try to do a reload of the table view with:
[self.view reloadData];
reloaddata doesn't seem to be a method of uitableviewcontroller or the view because I get an error: Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments
Can someone please past some code of how to reload a table view with the above interface?
Thanks!