views:

106

answers:

1

How do I have a UITableView be notified that the data it is using is new and all old data/cells should be flushed.

I have a search bar that will cause the UITableView to be refreshed when new queries are entered.

+2  A: 

An example would be:

[myTableView reloadData];
Jordan