学会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
|
#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
|
#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) { } return self; }
- (void)viewDidLoad { [super viewDidLoad]; }
- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; }
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { NSString *data = self.tfCreateData.text; getDataViewController *controller = (getDataViewController *)[segue destinationViewController]; 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
|
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周小鱼