coolyylu

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

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

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

  

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

分类:

技术点:

相关文章:

  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-02
  • 2021-11-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
  • 2021-04-30
相关资源
相似解决方案