zoukankan      html  css  js  c++  java
  • ios ViewController 页面跳转

    从一个Controller跳转到另一个Controller时,一般有以下2种: 
    1、利用UINavigationController,调用pushViewController,进行跳转;这种采用压栈和出栈的方式,进行Controller的管理。调用popViewControllerAnimated方法可以返回。 

        PickImageViewController *ickImageViewController = [[PickImageViewController alloc] init]; 
        [self.navigationController pushViewController: ickImageViewController animated:true]; 
        [ickImageViewController release]; 


    2、利用UIViewController自身的presentModalViewController,进行跳转;调用dismissModalViewControllerAnimated方法可以返回。 
        PickImageViewController *ickImageViewController = [[PickImageViewController alloc] init]; 
        [self presentModalViewController:ickImageViewController animated:YES]; 
      //返回 
        [self dismissModalViewControllerAnimated:YES];

    3、用StoryBoard的Segue直接可视化连接不同的ViewController”,并且将segue的id叫做“welcome“。然后在代码里写以下的代码

    [self performSegueWithIdentifier:@"welcome" sender:self];

    备注:
      方法1和2适用于旧版的nib文件页面
      方法3使用于storyboard

  • 相关阅读:
    MySql的基本架构续
    MySql的基本架构演变
    多列索引
    索引对单个表查询的影响
    技术在短期内总会被高估,但长期内,总会被低估
    MySql初步II
    验证启用了不安全的HTTP方法
    Struts2漏洞利用实例
    sar命令的使用
    HttpWatch的时间分析
  • 原文地址:https://www.cnblogs.com/JayK/p/3922338.html
Copyright © 2011-2022 走看看