0%

iOS学习——页面间的传值

学会ios的页面间传值。

和android不同,iOS传值不是通过Intent,而是更直接的方法,直接在被传值类中定义一个存放值的变量,在上一个页面直接将值放入,达到传值的目的。

故事板:

故事板


功能描述:

1
2
3
4
5
6
st=>start: 开始
e=>end: 结束
s1=>operation: 在输入框内输入内容
s2=>operation: 点击下一页按钮
s3=>operation: 在Label中显示上一页输入框内容
st->s1->s2->s3->e

代码:

第一个页面替换自己成自己写的类getDataViewController

  • createDataViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// createDataViewController.h
// coderfish003
//
// Created by apple40 on 15-7-20.
// Copyright (c) 2015年 coderfish. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface createDataViewController : UIViewController

// 定义输入框
@property (strong, nonatomic) IBOutlet UITextField *tfCreateData;

@end

  • createDataViewController.m
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// createDataViewController.m
// coderfish003
//
// Created by apple40 on 15-7-20.
// Copyright (c) 2015年 coderfish. All rights reserved.
//

#import "createDataViewController.h"
#import "getDataViewController.h"

@interface createDataViewController ()

@end

@implementation createDataViewController

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

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

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

// 页面传值函数
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
NSString *data = self.tfCreateData.text;
// 获得getDataViewController对象引用
getDataViewController *controller = (getDataViewController *)[segue destinationViewController];
// 给getDataViewController的getData标签内容赋值
controller.getData = data;
}

@end

第二个页面替换自己成自己写的类getDataViewController

  • getDataViewController.h

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    //
    // getDataViewController.h
    // coderfish003
    //
    // Created by apple40 on 15-7-20.
    // Copyright (c) 2015年 coderfish. All rights reserved.
    //

    #import <UIKit/UIKit.h>

    @interface getDataViewController : UIViewController
    @property (strong, nonatomic) IBOutlet UILabel *label;
    @property(strong,nonatomic)NSString *getData;
    @end

    • getDataViewController.m
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
29
30
31
32
33
34
35
36
37
38
39
40
//
// getDataViewController.m
// coderfish003
//
// Created by apple40 on 15-7-20.
// Copyright (c) 2015年 coderfish. All rights reserved.
//

#import "getDataViewController.h"

@interface getDataViewController ()

@end

@implementation getDataViewController

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

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.label.text = self.getData;
}

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

@end


##结果
在第一页的输入框输入文字,点下一页在下一页中显示文字
这里写图片描述
<br/ >
这里写图片描述


有什么问题都可以在博文后面留言,或者微博上私信我。

博主是 iOS 妹子一枚。

希望大家一起进步。

我的微博:Lotty周小鱼