在 Xcode 4.5 中,您可以从 segue 更改视图,但我想以编程方式更改 Mainstoryboard 中的视图。我知道在 Xib。我们使用这种方法:
SecondViewController *Second = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:Second animated:YES];
当用户在文本字段中单击完成时,我想更改视图(此代码检测用户是否单击完成):
-(IBAction)hidekeyboard {
[sender resignFirstResponder];
}