首页 > 其他 > 详细

通知传值(NSNotificationCenter)

时间:2014-07-19 23:31:49      阅读:362      评论:0      收藏:0      [点我收藏+]

bubuko.com,布布扣

通知传值

//流程:
1.
注册通知
2.
通知中心,发送一条消息通知----------其中name名字千万不要写错了,会出现在3个地方
3.
实现通知中心内部的方法,并实现传值
4.
第四步,消息发送完,要移除掉

代码如下:

#import "FirstViewController.h"
#import "SecondViewController.h"
#import "UIButton+Create.h"
@interface FirstViewController ()
{
    UILabel * _label;
}
@end

@implementation FirstViewController
- (void)dealloc
{
    [_label release];
    //第四步,消息发送完,要移除掉
    [[NSNotificationCenter defaultCenter]removeObserver:self name:@"labelTextNotification" object:nil];
    [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 = @"首页";
    
    _label = [[UILabel alloc]initWithFrame:CGRectMake(50, 80, 200, 30)];
    _label.backgroundColor = [UIColor greenColor];
    [self.view addSubview:_label];
    
    
    
    UIButton * button = [UIButton systemButtonWithFrame:CGRectMake(100, 120, 50, 50) title:@"Push" target:self action:@selector(didClickButtonAction)];
    [self.view addSubview:button];
    
    //第二步,通知中心,发送一条消息通知----------其中name名字千万不要写错了,会出现在3个地方
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(showLabelText:) name:@"labelTextNotification" object:nil];
    
 
    
    
	// Do any additional setup after loading the view.
}

- (void)showLabelText:(NSNotification *)notification
{
    //第三,实现通知中心内部的方法,并实现传值
    id text = notification.object;
    _label.text = text;
}

- (void)didClickButtonAction
{
    
  
    SecondViewController * secondVC = [[SecondViewController alloc]init];
    [self.navigationController pushViewController:secondVC animated:YES];
    [secondVC release];
}

- (void)didClick:(NSString *)text
{
    _label.text = text;
}

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

@end

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

- (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 orangeColor];
    self.navigationItem.title = @"第二页";
  
    
    
    _textField = [[UITextField alloc]initWithFrame:CGRectMake(50, 80, 200, 30)];
    _textField.borderStyle = UITextBorderStyleRoundedRect;
    [self.view addSubview:_textField];
    
    
    
    
    UIButton * button = [UIButton systemButtonWithFrame:CGRectMake(100, 120, 50, 50) title:@"Back" target:self action:@selector(didClickButtonAction)];
    [self.view addSubview:button];
 
    
    
    
    
	// Do any additional setup after loading the view.
}

- (void)didClickButtonAction
{
    
    //第一步注册通知
    [[NSNotificationCenter defaultCenter]postNotificationName:@"labelTextNotification" object:_textField.text];
    [self.navigationController popToRootViewControllerAnimated:YES];
}



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

@end

bubuko.com,布布扣


bubuko.com,布布扣


通知传值(NSNotificationCenter)

原文:http://blog.csdn.net/zuoyou1314/article/details/37968631

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!