1

Possible Duplicate:
How to create custom modal segue in 4.2 Xcode using storyboard

I'm trying to implement a custom segue without any kind of animation, just the destination view controller appearing simple. How can I do it?

Many thanks!

Community
  • 1
  • 1
theomen
  • 913
  • 3
  • 20
  • 39

1 Answers1

3

You would do the same as in the How to create custom modal segue in 4.2 Xcode using storyboard question's answer, only without the Animation:

[src.navigationController pushViewController:yourViewController animated:NO];
Community
  • 1
  • 1
Aleksander Azizi
  • 9,829
  • 9
  • 59
  • 87