ios 页面传值4种方式(一) 之全局变量

 ios 页面传值4种方式(一) 之全局变量

运用该方法1.解决了我在哈哈项目里查看详细XIB第一行不能显示hahaItem的问题~  鼓掌~~~~~
通用的是用代理的方式实现页面传值,但是有时候利用其它方式也可以很巧妙的解决问题,页面传值一共有4种方式:

1、使用全局变量, SharedApplication,定义一个变量来传递.

2、使用文件,或者NSUserdefault来传递

3、通过一个单例的class来传递

4、通过Delegate来传递。

 

一:定义

AppDelegate.h

@property (nonatomic, retain) DetailViewController *detailViewController;@property (nonatomic, retain) NSString *text;

 

二:实现

AppDelegate.m

@synthesize detailViewController = _detailViewController;@synthesize text;

如果有定义对象, 别忘了实例化

 

self.detailViewController = [[[DetailViewControlleralloc]init]autorelease];

 

三: 调用

保存

AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];appDelegate.text = textField.text;

 

使用

AppDelegate *app = [UIApplication sharedApplication].delegate;NSLog(@"%@", app.detailViewController.text);

 

在别的页面中,可以直接使用引用和基本数据类型;

posted on   ACM_Someone like you  阅读(744)  评论(0编辑  收藏  举报

编辑推荐:
· 一个奇形怪状的面试题:Bean中的CHM要不要加volatile?
· [.NET]调用本地 Deepseek 模型
· 一个费力不讨好的项目,让我损失了近一半的绩效!
· .NET Core 托管堆内存泄露/CPU异常的常见思路
· PostgreSQL 和 SQL Server 在统计信息维护中的关键差异
阅读排行:
· CSnakes vs Python.NET:高效嵌入与灵活互通的跨语言方案对比
· DeepSeek “源神”启动!「GitHub 热点速览」
· 我与微信审核的“相爱相杀”看个人小程序副业
· Plotly.NET 一个为 .NET 打造的强大开源交互式图表库
· 上周热点回顾(2.17-2.23)

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示