I have a tabBar application. There are 2 UIViewControllers A and B. UIViewController B has UITableView. I call method in A UIViewController from B UIViewController: [b someMethod:someObject];
Here is code:
-(void) someMethod:someObject
{
[tableViewDataArray addObject: someObject];
[tableView reloadData];
}
But UITableView doesn't reload until I switch UIViewController to B; How to reload it without switching? If this possible