user141302
user141302

Reputation:

how can i use normal UIViewcontroller as navigation controller?

I am using normal UIViewcontroller. But when i use pushviewcontroller in it, it is not working? What i have to do ? Any help?

Upvotes: 0

Views: 587

Answers (1)

Greg Martin
Greg Martin

Reputation: 5064

You need to replace your use of UIViewController with a UINavigationController. UIViewController by does not support push/pop of view controllers.

Upvotes: 3

Related Questions