I’ve a table view which is in a navigation view in my project.
I push another view for log in process.
This view accepts password and sends it to server for verification.
If the password is correct, the server returns some data in XML.
I want to refresh the table view with this XML data.
Previously I parsed the xml first before adding the navigationController view to the window.
How can I refresh the table view after I remove my login view from its super table view?
Thanks
(void)controllerWillChangeContent:(NSFetchedResultsController *)controller {
[self.table1View beginUpdates];
}
if you have this function you can use
[self.YourTableView reloadData];Hope it helps