UI_属性传值

创建文件

RootViewController.m

#import "RootViewController.h"
#import "SecondViewController.h"
@interface RootViewController ()

@property(nonatomic, retain)UITextField *myTextField;
@property(nonatomic, retain)UILabel *myLabel;

@end

@implementation RootViewController

- (void)dealloc
{
    [_myTextField release];
    [_myLabel release];
    [super dealloc];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    1.创建一个textField.
    self.myTextField = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 150, 50)];
    self.myTextField.layer.borderWidth = 1;
    self.myTextField.layer.cornerRadius = 10;
    [self.view addSubview:self.myTextField];
    [_myTextField release];

    2.创建label.
    self.myLabel = [[UILabel alloc] initWithFrame:CGRectMake(100, 200, 150, 50)];
    self.myLabel.layer.borderWidth = 1;
    self.myLabel.layer.cornerRadius = 10;
    [self.view addSubview:self.myLabel];
    [_myLabel release];

    3.创建一个下一页的button.
    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    button.frame = CGRectMake(100, 300, 150, 50);
    [button setTitle:@"下一页" forState:UIControlStateNormal];
    button.layer.borderWidth = 1;
    button.layer.cornerRadius = 10;
    [self.view addSubview:button];
    [button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];

}

- (void)buttonAction:(UIButton *)button {

    4.点击下一页,打印textField里的内容.
    NSLog(@"%@", self.myTextField.text);

    5.push下一页.
    SecondViewController *secondVC = [[SecondViewController alloc] init];
    [self.navigationController pushViewController:secondVC animated:YES];
    [secondVC release];

    // 从前向后进行属性传值.
    7.利用属性传值.
    secondVC.str = self.myTextField.text;

}
SecondViewController.h

#import <UIKit/UIKit.h>
@interface SecondViewController : UIViewController

6.先写一条属性.
@property(nonatomic, copy)NSString *str;

@end
SecondViewController.m

#import "SecondViewController.h"
#import "RootViewController.h"
@interface SecondViewController ()

@property(nonatomic, retain)UITextField *textField;

@end

@implementation SecondViewController

- (void)dealloc
{
    [_textField release];
    [super dealloc];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.view.backgroundColor = [UIColor whiteColor];

    NSLog(@"%@", self.str);

    self.textField = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 150, 50)];
    self.textField.layer.borderWidth = 1;
    self.textField.layer.cornerRadius = 10;
    [self.view addSubview:self.textField];
    [_textField release];

    7.在后一个界面中用textField.text来接收这个属性
    self.textField.text = self.str;

    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    button.frame = CGRectMake(100, 200, 150, 50);
    [button setTitle:@"返回" forState:UIControlStateNormal];
    button.layer.borderWidth = 1;
    button.layer.cornerRadius = 10;
    [self.view addSubview:button];
    [button addTarget:self action:@selector(backAction:) forControlEvents:UIControlEventTouchUpInside];

}

- (void)backAction:(UIButton *)button {

    8.返回上一页.
    [self.navigationController popViewControllerAnimated:YES];

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值