where search data and click item, a new view appears, where I can change the data. If change data and return to uisearchdisplaycontroller, data not reload (also in tableView). How do i reload data?
sorry for my english :)
The UITableView Class has a method called reloadData
which can be called and it reloads all of your tableView's rows. UITableView Class Documentation
If you only need to reload specific rows you can use reloadRowsAtIndexPaths:withRowAnimation:
passing in an array of NSIndexPath
and a row animation.
You can also reload entire sections using reloadSections:withRowAnimation:
.