tags:

views:

39

answers:

1

hi

I wanna implement a naviagtion control for a series of view. For example, naviagting from 1st view to 2nd view, then from 2nd view to 3rd view.......Can anybody give good tutorial for implementing this.

Regards, Sreelash

+1  A: 

Take the navigation based Application while selecting the project.

USe pushViewController to navigate from 1 to 2, 2 to 3...

use popViewController to come to previous like 3 to 2, 2 to 1.....

Click this link for more

Suriya
But my application is view based.
Sreelash
Den instead of `pushViewController` use `presentalModalViewControler` and instead of `popViewController` use `dismissalModalViewController`
Suriya