views:

48

answers:

2

i want to go to another view from one view on a button click please help me........ thank you

A: 

A pretty good tutorial can be found here

Luke
A: 

Use a UINavigationController to display the first view. When the user taps your button, call the navigation controller's pushViewController:animated: method. To return to the previous view programmatically, call one of the pop...ViewController... methods (though this may not be required, since the navigation controller itself can handle "back" button taps).

Marcelo Cantos