码迷,mamicode.com
首页 > 其他好文 > 详细

target-action传值

时间:2014-10-08 02:00:33      阅读:429      评论:0      收藏:0      [点我收藏+]

标签:个人

Target-Action传值

实质就是:A页面要给B页面传值,A就提供接口出去,抓A到B内部来,A间接调用自己内部方法(相当于,A把自己内部需                     要操作的方法,传到B内来,到B内部进行赋值,这样就不存在访问不到各自的局部实例变量)

      @property (nonatomic,assign)id traget;  @property (nonatomic,assign)SEL action;

       [self.traget performSelector:self.action withObject:nil];(是否需要传参数自己定,最多2个)

代码如下:

[objc] view plaincopy

  1. #import "FirstViewController.h"  

  2. #import "SecondViewController.h"  

  3. #import "UIButton+Create.h"  

  4. @interface FirstViewController ()  

  5. {  

  6.     UILabel * _label;  

  7. }  

  8. @end  

  9.   

  10. @implementation FirstViewController  

  11. - (void)dealloc  

  12. {  

  13.     [_label release];  

  14.     [super dealloc];  

  15. }  

  16. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  

  17. {  

  18.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  

  19.     if (self) {  

  20.         // Custom initialization  

  21.     }  

  22.     return self;  

  23. }  

  24.   

  25. - (void)viewDidLoad  

  26. {  

  27.     [super viewDidLoad];  

  28.       

  29.       

  30.     self.view.backgroundColor = [UIColor redColor];  

  31.     self.navigationItem.title = @"首页";  

  32.       

  33.     _label = [[UILabel alloc]initWithFrame:CGRectMake(508020030)];  

  34.     _label.backgroundColor = [UIColor greenColor];  

  35.       

  36.     //    _label.text = self.text;  

  37.     [self.view addSubview:_label];  

  38.       

  39.       

  40.       

  41.     UIButton * button = [UIButton systemButtonWithFrame:CGRectMake(1001205050) title:@"Push" target:self action:@selector(didClickButtonAction)];  

  42.     [self.view addSubview:button];  

  43.       

  44.       

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

  46. }  

  47.   

  48. - (void)didClickButtonAction  

  49. {  

  50.       

  51.     

  52.     SecondViewController * secondVC = [[SecondViewController alloc]init];  

  53.     secondVC.target = self;  

  54.     secondVC.action = @selector(didClick:);  

  55.     [self.navigationController pushViewController:secondVC animated:YES];  

  56.     [secondVC release];  

  57. }  

  58.   

  59. - (void)didClick:(NSString *)text  

  60. {  

  61.     _label.text = text;  

  62. }  

  63.   

  64. - (void)didReceiveMemoryWarning  

  65. {  

  66.     [super didReceiveMemoryWarning];  

  67.     // Dispose of any resources that can be recreated.  

  68. }  

  69.   

  70. @end  


[objc] view plaincopy

  1. #import <UIKit/UIKit.h>  

  2.   

  3. @interface SecondViewController : UIViewController  

  4.   

  5. @property (nonatomic,assign)id target;  

  6. @property (nonatomic,assign)SEL action;  

  7. @end  


[objc] view plaincopy

  1. #import "SecondViewController.h"  

  2. #import "FirstViewController.h"  

  3. #import "UIButton+Create.h"  

  4. @interface SecondViewController ()  

  5. {  

  6.     UITextField * _textField;//创建一个输入框  

  7. }  

  8. @end  

  9. @implementation SecondViewController  

  10.   

  11. - (void)dealloc  

  12. {  

  13.     [_textField release];  

  14.     [super dealloc];  

  15. }  

  16. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  

  17. {  

  18.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  

  19.     if (self) {  

  20.         // Custom initialization  

  21.     }  

  22.     return self;  

  23. }  

  24.   

  25. - (void)viewDidLoad  

  26. {  

  27.     [super viewDidLoad];  

  28.     self.view.backgroundColor = [UIColor orangeColor];  

  29.     self.navigationItem.title = @"第二页";  

  30.     

  31.       

  32.       

  33.     _textField = [[UITextField alloc]initWithFrame:CGRectMake(508020030)];  

  34.     _textField.borderStyle = UITextBorderStyleRoundedRect;  

  35.     [self.view addSubview:_textField];  

  36.       

  37.       

  38.       

  39.       

  40.     UIButton * button = [UIButton systemButtonWithFrame:CGRectMake(1001205050) title:@"Back" target:self action:@selector(didClickButtonAction)];  

  41.     [self.view addSubview:button];  

  42.    

  43.       

  44.       

  45.       

  46.       

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

  48. }  

  49.   

  50. - (void)didClickButtonAction  

  51. {  

  52.     [_target performSelector:_action withObject:_textField.text];  

  53.     [self.navigationController popToRootViewControllerAnimated:YES];  

  54. }  

  55.   

  56.   

  57.   

  58. - (void)didReceiveMemoryWarning  

  59. {  

  60.     [super didReceiveMemoryWarning];  

  61.     // Dispose of any resources that can be recreated.  

  62. }  

  63.   

  64. @end  


bubuko.com,布布扣


bubuko.com,布布扣



target-action传值

标签:个人

原文地址:http://9453125.blog.51cto.com/9443125/1561048

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!