当前位置:首页>编程日记>正文

单例传值

本站寻求有缘人接手,详细了解请联系站长QQ1493399855

单例传值 ------- 如果页面之间相隔很多,要进行传值,将值保存到第三方,将第三方设置为单例模式

代码如下:

[objc] view plaincopy

  1. <pre name="code" class="objc">#import <Foundation/Foundation.h>  

  2.   

  3. @interface Singleton : NSObject  

  4. + (Singleton *)shareSingleton;  

  5. @property (nonatomic,copy)NSString * text;  

  6. @end  






  1. #import "Singleton.h"  

  2. @implementation Singleton  

  3. static Singleton * singleton = nil;  

  4. + (Singleton *)shareSingleton  

  5. {  

  6.     @synchronized(self){  

  7.         if (singleton == nil) {  

  8.             singleton = [[Singleton alloc]init];  

  9.         }  

  10.     }  

  11.     return singleton;  

  12. }  



  1. #import "FirstViewController.h"  

  2. #import "SecondViewController.h"  

  3. #import "UIButton+Create.h"  

  4. #import "Singleton.h"  

  5. @interface FirstViewController ()  

  6.     UITextField * _textField;//创建一个输入框  

  7. @implementation FirstViewController  

  8. - (void)dealloc  

  9.     [_textField release];  

  10.     [super dealloc];  

  11. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  

  12.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  

  13.     if (self) {  

  14.         // Custom initialization  

  15.     return self;  

  16. - (void)viewDidLoad  

  17.     [super viewDidLoad];  

  18.       

  19.     self.view.backgroundColor = [UIColor redColor];  

  20.     self.navigationItem.title = @"首页";  

  21.     /** 

  22.      *  1.在第一个界面创建一个输入框 

  23.      *   

  24.      */  

  25.     _textField = [[UITextField alloc]initWithFrame:CGRectMake(508020030)];  

  26.     _textField.borderStyle = UITextBorderStyleRoundedRect;  

  27.     [self.view addSubview:_textField];  

  28.      *  1.创建一个UIButton, 

  29.      *  2.并添加响应事件,从首页跳转到第二个页面. 

  30.     UIButton * button = [UIButton systemButtonWithFrame:CGRectMake(1001205050) title:@"Push" target:self action:@selector(didClickButtonAction)];  

  31.     [self.view addSubview:button];  

  32.     // Do any additional setup after loading the view.  

  33. - (void)didClickButtonAction  

  34.      *  1.用push的方法推出下一个页面 

  35.      *  2.把首页输入框输入的字符串,通过单例来接收 

  36.      *  3.从而实现把首页输入框输入的字符串,传到第二页的UILabel上. 

  37.     SecondViewController * secondVC = [[SecondViewController alloc]init];  

  38.     [Singleton shareSingleton].text = _textField.text;  

  39.     [self.navigationController pushViewController:secondVC animated:YES];  

  40.     [secondVC release];  

  41. - (void)didReceiveMemoryWarning  

  42.     [super didReceiveMemoryWarning];  

  43.     // Dispose of any resources that can be recreated.  




  1. #import "SecondViewController.h"  

  2. @interface SecondViewController ()  

  3. @implementation SecondViewController  

  4.     [_label release];  

  5.     self.view.backgroundColor = [UIColor orangeColor];  

  6.     self.navigationItem.title = @"第二页";  

  7.      *  1.在第二个界面创建一个UILabel 

  8.      *  2.把首页输入框输入的字符串,通过单例类的属性NSString * text接收 

  9.      *  3.然后通过赋值给UILabel 

  10.     _label = [[UILabel alloc]initWithFrame:CGRectMake(508020030)];  

  11.     _label.backgroundColor = [UIColor greenColor];  

  12.     _label.text = [Singleton shareSingleton].text;  

  13.     [self.view addSubview:_label];  




http://www.coolblog.cn/news/0ccb48c7a1e6649e.html

相关文章:

  • asp多表查询并显示_SpringBoot系列(五):SpringBoot整合Mybatis实现多表关联查询
  • s7day2学习记录
  • 【求锤得锤的故事】Redis锁从面试连环炮聊到神仙打架。
  • 矿Spring入门Demo
  • 拼音怎么写_老师:不会写的字用圈代替,看到孩子试卷,网友:人才
  • Linux 实时流量监测(iptraf中文图解)
  • Win10 + Python + GPU版MXNet + VS2015 + RTools + R配置
  • 美颜
  • shell访问php文件夹,Shell获取某目录下所有文件夹的名称
  • 如何优雅的实现 Spring Boot 接口参数加密解密?
  • LeCun亲授的深度学习入门课:从飞行器的发明到卷积神经网络
  • Mac原生Terminal快速登录ssh
  • 法拉利虚拟学院2010 服务器,法拉利虚拟学院2010
  • 支撑微博千亿调用的轻量级RPC框架:Motan
  • mysql commit 机制_1024MySQL事物提交机制
  • java受保护的数据与_Javascript类定义语法,私有成员、受保护成员、静态成员等介绍...
  • 2019-9
  • jquery 使用小技巧
  • 科学计算工具NumPy(3):ndarray的元素处理
  • vscode pylint 错误_将实际未错误的py库添加到pylint白名单
  • 工程师在工作电脑存 64G 不雅文件,被公司开除后索赔 41 万,结果…
  • linux批量创建用户和密码
  • js常用阻止冒泡事件
  • 气泡图在开源监控工具中的应用效果
  • newinsets用法java_Java XYPlot.setInsets方法代碼示例
  • 各类型土地利用图例_划重点!国土空间总体规划——土地利用
  • php 启动服务器监听
  • dubbo简单示例
  • Ubuntu13.10:[3]如何开启SSH SERVER服务
  • [iptables]Redhat 7.2下使用iptables实现NAT
  • Django View(视图系统)
  • 【设计模式】 模式PK:策略模式VS状态模式
  • CSS小技巧——CSS滚动条美化
  • JS实现-页面数据无限加载
  • 最新DOS大全
  • 阿里巴巴分布式服务框架 Dubbo
  • 阿里大鱼.net core 发送短信
  • Sorenson Capital:值得投资的 5 种 AI 技术
  • 程序员入错行怎么办?
  • Arm芯片的新革命在缓缓上演
  • 两张超级大表join优化
  • 第九天函数
  • Linux软件安装-----apache安装
  • HDU 5988 最小费用流
  • 《看透springmvc源码分析与实践》读书笔记一
  • 通过Spark进行ALS离线和Stream实时推荐
  • nagios自写插件—check_file
  • python3 错误 Max retries exceeded with url 解决方法
  • 正式开课!如何学习相机模型与标定?(单目+双目+鱼眼+深度相机)
  • 行为模式之Template Method模式