0

I am trying to present a ViewController which I know can be done with the following line.

[self presentViewController:myVC animated:YES completion:nil];

However I have a part which is calling the AppDelegate and that is where I run into trouble.

I can manage to sort it out with:

    [self.navigationController pushViewController:bvc animated:YES];

but as the code implies, this does a navigation push - how do I it, so that I can do a vertical push up?

jwknz
  • 6,598
  • 16
  • 72
  • 115

1 Answers1

1

You can present on navigation controller -

[self.navigationController presentViewController:myVC animated:YES completion:nil];
saadnib
  • 11,145
  • 2
  • 33
  • 54