Quote:
Originally Posted by mnemonic_fx
To run a more restrictive check.
Code:
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if ([viewController isKindOfClass:[SubscriptionDetailController class]])
{
SubscriptionDetailController *controller = (SubscriptionDetailController *)viewController;
[controller.tableView reloadData];
}
}
If you assign to the delegate of navigation controller from the exact subscription detail controller instance, I think it won't invoke that method in other controllers.
|
That did it!!!! Wow. Works great. Thanks for the learning experience and the help. You're my hero.