skip to Main Content

Xcode – How to do push navigation with Notification Observer?

I have two classes. A and B for example. I have created an observer in A like this - (void)viewDidLoad [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(somethingHappens:) name:@"notificationName" object:nil]; } -(void)somethingHappens:(NSNotification*)notification { NavigationController *navigationController = [self.storyboard instantiateViewControllerWithIdentifier:@"contentViewController"]; UIViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"loyaltyVC"]; navigationController.viewControllers…

VIEW QUESTION
Back To Top
Search