zoukankan      html  css  js  c++  java
  • ios 页面传值4种方式(一) 之全局变量

    通用的是用代理的方式实现页面传值,但是有时候利用其它方式也可以很巧妙的解决问题,页面传值一共有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);

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

     

  • 相关阅读:
    metasploitable实践
    免杀技术
    SQL注入
    ARP欺骗
    使用Nmap攻击靶机和使用Wireshark进行嗅探、分析
    Nmap
    搭建网络攻防环境
    20139216网络攻防技术第七次作业
    Android代码实现求和运算
    命令行输入参数,并实现排序
  • 原文地址:https://www.cnblogs.com/mohe/p/3282894.html
Copyright © 2011-2022 走看看