William Sham
William Sham

Reputation: 13239

Xcode: difference between pushViewController vs segue for view transition

What is the difference between using pushViewController to transition to another view than Segue?

Thanks

Upvotes: 1

Views: 4259

Answers (1)

gurooj
gurooj

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

Related Questions