码迷,mamicode.com
首页 > 移动开发 > 详细

IOS开发之——使用Segue在StoryBoard之间切换

时间:2014-06-12 08:39:06      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   ext   

使用Segue能够在ViewController之间来回切换,以下就来说下切换方法:

1. 使用点击button进行切换

直接上图,在须要切换的View属性界面,点击Modal然后拉到前一个view界面或者是Button上

bubuko.com,布布扣


2. 手动进行跳转

假设拉到了Button的TouchUpInside上,那么点击左側button的时候就会切到右边的View,假设拉到了view上,就会连接Manual,在代码中实现跳转

bubuko.com,布布扣

设置Segue的Indentifier属性:

bubuko.com,布布扣

代码中手动进行跳转:

//在viewDidAppear里面加入触发segue进行自己主动跳转
-(void)viewDidAppear:(BOOL)animated
{
    [self performSegueWithIdentifier:@"drawecg" sender:self];
}

注:在ViewDidLoad实现跳转无效


3. 怎样跳转到随意一个页面

在有可能进行上级跳转的ViewController文件里加上以下代码,函数名称任起:

#pragma mark 定义这个函数,别的ViewController在Exit的时候就能直接跳到这了
- (IBAction)goHome:(UIStoryboardSegue *)segue
{
    [[segue sourceViewController] class];
}

在想要跳转view的Exit上右键,选择这个goHome函数,拉到想要运行的button上,就能够实现跳转了

bubuko.com,布布扣

也可代码实现返回上一个页面,注销当前页面:

-(void)lastPage
{
    NSLog(@"点击了上一个视图button");
    [self dismissViewControllerAnimated:YES completion:^(void){
        
        // Code
        
    }];
}


也可这样实现:

 // 获取故事板
 UIStoryboard *board = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];

 // 获取故事板中某个View    
 UIViewController *next = [board instantiateViewControllerWithIdentifier:@"Second"];

 // 跳转    
 [self presentModalViewController:next animated:YES];


当然,假设你使用Navigation Controller,使用Push进行连接,就不是上面的代码进行跳转了:

跳转到LandscapeViewController

//打开一个横屏界面
- (IBAction)openLandscapeControl:(id)sender {
    LandscapeViewController *control = [[LandscapeViewController alloc]initWithNibName:@"LandscapeViewController" bundle:nil];
    
    [self.navigationController pushViewController:control animated:YES];
}
使用pop返回上一个View
//返回前一页
- (IBAction)clickBack:(id)sender {
    [self.navigationController popToRootViewControllerAnimated:YES];
}





IOS开发之——使用Segue在StoryBoard之间切换,布布扣,bubuko.com

IOS开发之——使用Segue在StoryBoard之间切换

标签:style   class   blog   code   http   ext   

原文地址:http://www.cnblogs.com/mengfanrong/p/3782630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!