//进入下一页  
- (IBAction)Go:(id)sender {  
      
    TwoViewController *twoVC = [[TwoViewController alloc] init];//这里因为是自己生成的xib文件,所以这样子写就可以拉,如果是自己手动建的xib,那你要制定是哪一个xib  
    twoVC.valueDelegate = self;  
    [self setModalTransitionStyle:UIModalTransitionStylePartialCurl];//设置跳转过渡的一个style  
    [self presentViewController:twoVC animated:YES completion:nil];//进入下一个页面  
      
}  


 

 

相关文章:

  • 2022-02-03
  • 2022-12-23
  • 2022-12-23
  • 2021-04-03
  • 2021-05-31
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-19
  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案