属性传值

属性/方法传值

//1.后面的界面定义了一个属性,用于保存,前一个界面,传过来的值

//注:属性定义成字符串还是别的类型,取决于你的需求,本例我们须要一个字符串,用于UILabel显示

//2.后面的界面创建完成之后,为属性赋值,(即:记录须要传递的值)

//3.在须要使用值的地方,使用属性记录的值这样的通过定义属性,达到传值的方式,称为属性传值,

//属性传值,一般用于从前一个界面向后一个界面传值;

代码例如以下:

#import "FirstViewController.h"
#import "SecondViewController.h"
#import "UIButton+Create.h"
@interface FirstViewController ()
{
    UITextField * _textField;//创建一个输入框
}
@end

@implementation FirstViewController
- (void)dealloc
{
    [_textField release];
    [super dealloc];
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.view.backgroundColor = [UIColor redColor];
    self.navigationItem.title = @"首页";
    /**
     *  1.在第一个界面创建一个输入框
     *
     */
    _textField = [[UITextField alloc]initWithFrame:CGRectMake(50, 80, 200, 30)];
    _textField.borderStyle = UITextBorderStyleRoundedRect;
    [self.view addSubview:_textField];

    /**
     *  1.创建一个UIButton,
     *  2.并加入响应事件,从首页跳转到第二个页面.
     */
    UIButton * button = [UIButton systemButtonWithFrame:CGRectMake(100, 120, 50, 50) title:@"Push" target:self action:@selector(didClickButtonAction)];
    [self.view addSubview:button];

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

- (void)didClickButtonAction
{

    /**
     *  1.用push的方法推出下一个页面
     *  2.把首页输入框输入的字符串,通过SecondViewController类的属性NSString * text接收
     *  3.从而实现把首页输入框输入的字符串,传到第二页的UILabel上.
     */
    SecondViewController * secondVC = [[SecondViewController alloc]init];
    secondVC.text = _textField.text;
    [self.navigationController pushViewController:secondVC animated:YES];
    [secondVC release];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

#import "SecondViewController.h"

@interface SecondViewController ()

@end
@implementation SecondViewController

- (void)dealloc
{
    [_label release];
    [super dealloc];
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor orangeColor];
    self.navigationItem.title = @"第二页";
    /**
     *  1.在第二个界面创建一个UILabel
     *  2.把首页输入框输入的字符串,通过SecondViewController类的属性NSString * text接收
     *  3.然后通过赋值给UILabel
     */
    _label = [[UILabel alloc]initWithFrame:CGRectMake(50, 80, 200, 30)];
    _label.backgroundColor = [UIColor greenColor];
    _label.text = self.text;
    [self.view addSubview:_label];

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

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

时间: 2024-10-19 04:57:29

属性传值的相关文章

iOS中多视图的传值 属性传值和代理传值

首先创建两个类 ,FirstViewController和SecondViewController,都继承于UIViewController 1 #import "AppDelegate.h" 2 #import "FirstViewController.h" 3 4 @interface AppDelegate () 5 6 @end 7 8 @implementation AppDelegate 9 10 11 - (BOOL)application:(UIAp

iOS 页面间传值 之 属性传值,代理传值

手机 APP 运行,不同页面间传值是必不可少,传值的方式有很多(方法传值,属性传值,代理传值,单例传值) ,这里主要总结下属性传值和代理传值. 属性传值:属性传值是最简单,也是最常见的一种传值方式,但其具有局限性(一般用于将第一个页面的值传递到第二个页面,但无法从第二个页面传到第一个页面), 向SecondViewController传值:SecondViewController 设置属性 sendMessage 1 - (void)rightButtonAction:(UIBarButtonI

UI 07 _ 导航视图控制器 与 属性传值

首先, 先创建三个VC. 完成点击按钮, 进入下一页, 并能够返回. 要先把导航视图控制器创建出来. 在AppDelegate.m 文件中代码如下: #import "AppDelegate.h" #import "MainViewController.h" @interface AppDelegate () @end @implementation AppDelegate - (void)dealloc{ [_window release]; [super dea

属性传值和代理传值的步骤

//属性传值:最常用的传值方式 /** * 操作过程: 1.在第二个页面.h文件中书写属性 (设置那个传值属性) 2.就在第一个页面创建第二页控制器的方法里面,进行赋值操作 3.适用性(局限性): 仅仅适用于第一个页面传值到下一个页面 */ /** * 代理传值 操作过程 1.在第二级控制器.h文件中,设置非正式协议(方法必须带参数) 2.在第二级控制器.h文件中写属性 3.在第二级控制器.m文件中,利用代理属性,去调用协议里面的方法(同时把参数传出来) 4.在第一级控制器中遵守协议 5.在第一

属性传值,协议传值,block传值,单例传值四种界面传值方式

一.属性传值 对于属性传值而言,相对于其它的三种 方法来说,是最基础,最简单的一种 方法,但,属性传值 有很大的局限性,因为是适用于第一个界面向第二个界面传 值,第二个向第三个界面传值等等.N界面向N + 1界面传值.而在此基础上,必须知道跳转界面的明确位置及所要传的值的具体类型.在第二个界面中声明所要传值 类型的属性. @interface SecondViewController : UIViewController //声明一个字符串属性来保存第一个界面传过来的字符串内容 @propert

属性传值和block

属性传值和block属性传值用于当前页面的值传入下个界面:block用于当前页面的值传回上个界面: 导入头文件: 属性传值首先下一个界面要定义一个变量来接收@property (nonatomic, weak) NSString *name;在上个界面跳转的方法里,初始化一个对象,并赋值.(类名+变量名) block传值在当前页面声明一个方法块#userViewController.h typedef void(^updateUserSucc)(void); @property (nonatom

属性传值 Block传值

属性传值 就是将A页面的数据传到B页面上,下面就是将FirstViewController的TextField的内容传递到SecondViewController页面的导航栏标题和控制台输出上 #import @interface FirstViewController :UIViewController { UITextField *tf; } @end #import "FirstViewController.h" #import "SecondViewControlle

属性传值和协议传值  

属性传值三部..... 1.在第二个页面.h中,定义name //属性传值............1 @property (nonatomic, copy)NSString *name; 2.在第一页.m中然后在推出第二个页面前,把第一个按钮的title值传给第二个页面定义的name SecondViewController *secondVC = [[SecondViewController alloc] init]; //属性传值..............2 secondVC.name =

iOS 页面跳转传值,属性传值,代理传值,代码块传值,单例传值,通知传值

有时候我们在页面跳转的时候回传递相应的参数,如,你想把在第一个页面的文本框里的内容显示在第二个文本框中,或者你又想把第二个文本框中的内容改变之后到第一个页面的文本框中,所有,这个时候我们就要用到页面跳转传值 1.属性传值(正向传值) 属性传值是正向传值,只可以从前面一个页面传递到第二个页面,不可以从第二个页面传递到第一个页面 2.代理传值(逆向传值) 代理传值是逆向传值 代理传值步骤 代理传值 适用于 反向传值 1.1 创建协议 及协议方法 在反向传值的页面(SecondViewControll