第二种是利用ViewController与ViewController之间,拖拽添加segue
方法中提到的设置segue的identifier界面
在.h文件中声明
- (IBAction)gotoSecondView:(id)sender
在.m文件中定义
- (IBAction)gotoSecondView:(id)sender { [self performSegueWithIdentifier:@"secondview" sender:self];
}
参考:http://blog.****.net/mad1989/article/details/7919504