博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS开发之——使用Segue在StoryBoard之间切换
阅读量:5237 次
发布时间:2019-06-14

本文共 1612 字,大约阅读时间需要 5 分钟。

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

1. 使用点击button进行切换

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

2. 手动进行跳转

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

设置Segue的Indentifier属性:

代码中手动进行跳转:

//在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上,就能够实现跳转了

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

-(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];}

转载于:https://www.cnblogs.com/mengfanrong/p/3782630.html

你可能感兴趣的文章
【原】PNG的使用技巧
查看>>
android studio 使用SVN 锁定文件,防止别人修改(基于Android studio 1.4 )
查看>>
4412 uboot启动分析
查看>>
熟用TableView
查看>>
PHP动态页面 生产静态页 方法二
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
百度贴吧图片抓取工具
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
第二阶段冲刺(2)
查看>>
ajax post 传参
查看>>
2.1命令行和JSON的配置「深入浅出ASP.NET Core系列」
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
xp sp3安装IIS
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
Cocos2d-x官方在线视频-Cocos2d-x3.2《2048》手游开发揭秘
查看>>
Android实现静默安装与卸载
查看>>