I’m using *NSMutableDictionary articleDictionary as a datasource for tableview.I have different tab in tableview page, each tab i’m using different xml file [https://domain.com/api/categories/3/user/xml ] . I received different set of values in (void)viewDidUnload area but not reflect in table view .Tableview still showing old values.Please help me . Thanks
self.articleDictionary = [NSDictionary dictionaryWithContentsOfURL: [NSURL URLWithString:urlString]];
I resolved the issue.
I changed my UiviewController superclass to UITableViewController. Thanks for your helps.