设置segue跳转页面

时间:2023-03-08 16:22:12

第二种是利用ViewController与ViewController之间,拖拽添加segue

方法中提到的设置segue的identifier界面

在.h文件中声明
- (IBAction)gotoSecondView:(id)sender
在.m文件中定义
- (IBAction)gotoSecondView:(id)sender { [self performSegueWithIdentifier:@"secondview" sender:self];
}

  

设置segue跳转页面

参考:http://blog.****.net/mad1989/article/details/7919504