服务器之家

服务器之家 > 正文

iOS页面跳转及数据传递(三种)

时间:2021-03-11 16:12     来源/作者:BearsG

iOS页面跳转:

第一种

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

//描述:通过 NSNavigationBar 进行跳转

 [self.navigationController popViewControllerAnimated:YES];

//描述:在子视图返回到上级视图

第二种

?
1
UIViewController *control = [[UIViewController alloc] init]; [self presentModalViewController:control animated:YES]; [control release];

//描述:通过事件进行跳转

[self dismissModalViewControllerAnimated:YES];

//描述:通过事件进行返回。

第三种

?
1
2
[self.view.window addSubview:otherview];
[self.view removeFromSuperview]

数据传递:

1)采用代理模式子viewcontroller设计 代理协议,定义协议接口,父viewcontroller 实现协议接口,实现子viewcontroller 退出时将相关数据更新到父视图。
2)采用ios的消息机制 父viewcontroller注册消息,子viewcontroller 发送消息,触发父viewcontroller的消息处理。

?
1
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(setData:) name:kNotificationMessage object:nil];

//注册监听,其中setData用来处理消息

?
1
[[NSNotificationCenter defaultCenter] postNotificationName:kNotificationMessage object:self userInfo:infoDict];

//发送消息

3)采用database做为数据中间的存储媒介,子viewcontroller将状态数据存入DB,父viewcontroller从DB获取数据更新view.

4)采用ios的NSDefault 存储

5)通过AppDelegate 中定义全局变量实现中间数据的存储。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!

原文链接:http://blog.csdn.net/ws1352864983/article/details/50866022

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部