vote up 1 vote down star

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!

flag

44% accept rate

1 Answer

vote up 5 vote down

you have to do it on the UITableView over [self.tableView reloadData];

link|flag
wouldn't this only work if the uitableview was an outlet? the class above is a uitableviewcontroller. – Joe Estes Apr 2 at 19:25
It works because tableView is a property of UITableViewController. Outlets don't have anything to do with that, they are used to connect interface builder files with code. – catlan Apr 2 at 19:57
it worked! Thanks a million! – Joe Estes Apr 3 at 17:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.