Reputation: 13239
What is the difference between using pushViewController to transition to another view than Segue?
Thanks
Upvotes: 1
Views: 4259
Reputation: 2110
PushViewController is used for adding a new view controller to a navigation controller stack. Segue is part of the new iOS 5.0 Storyboard system, where view controller transitions can be created and managed through Interface Builder. Here is a tutorial for storyboarding in iOS 5.0.
Upvotes: 5