Object storyBoard 页面跳转

    //根据 segue Identifier跳转界面

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

    

   //以modal 方式跳转

    [self presentModalViewController:nil animated:YES];

    

   //压进一个viewcontroller

    [self.navigationController pushViewController:nil animated:YES];


   //弹出一个viewcontroller  相当与返回上一个界面

    [self.navigationController popViewControllerAnimated:YES];

    

   // 以 modal跳转的返回方法

    [self dismissModalViewControllerAnimated:YES];


你可能感兴趣的:(Object storyBoard 页面跳转)