I have a navigationControll with several views. Everything works properly. I now want to show an alert in the parent view, after i call the method [self.navigationController popViewControllerAnimated:YES]; in the child view. I configured the alert to show on the parent’s view controller viewDidLoad. But what i acknowledge is that this is only called the first time the view is called. Is there any method called each time i go back to this view? thks!
I have a navigationControll with several views. Everything works properly. I now want to
Share
I had to remove the
-(void)viewDidAppear:(BOOL)animated;in order for this to work:Now the alert works perfectly.