Xcode 4.5 ではセグエからビューを変更できますが、プログラムでメインストーリーボードのビューを変更したいと考えています。私はXibで知っています。この方法を使用します。
SecondViewController *Second = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:Second animated:YES];
ユーザーがテキストフィールドで完了をクリックしたときにビューを変更したい (このコードは、ユーザーが完了をクリックしたかどうかを検出します):
-(IBAction)hidekeyboard {
[sender resignFirstResponder];
}