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

本文共 1557 字,大约阅读时间需要 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];}

你可能感兴趣的文章
Javascript--面向对象(三)接口
查看>>
省赛部分解题报告
查看>>
如何结合使用 Subversion 和 Eclipse
查看>>
事件之道~一 如何让实体发生更新时,同时记录它更新的内容到日志表
查看>>
前景检测算法_4(opencv自带GMM)
查看>>
PHP内核探索之变量(4)- 数组操作
查看>>
6个关于dd命令备份Linux系统的例子
查看>>
面向对象、面向服务、面向组件三种编程模式有什么区别?分别适用于哪些领域的开发?...
查看>>
监听视图树 ViewTreeObserver 获取View的宽高
查看>>
学习笔记 --- 缓存、动态页面静态化、网站优化
查看>>
linux 开机批量启动程序
查看>>
ANDROID L——Material Design具体解释(主题和布局)
查看>>
Spring注解@Component、@Repository、@Service、@Controller区别
查看>>
Aimp3的播放列表 按评分排序 落雨
查看>>
【Leet Code】Palindrome Number
查看>>
python网络编程初级
查看>>
Ruby中的Symbol与字符串
查看>>
最长回文字符串(manacher算法)
查看>>
java泛型概述
查看>>
winform程序_根据输入的sql生成excel(字段名与sql一致)
查看>>