Sending , Listening for and Reacting to Notifications (发送,监听通知)

发送方:

//初始化通知内容  senderObject:self   userInfo:接收到通知时可从中获取到的信息

+ (instancetype)notificationWithName:(NSString *)aName object:(id)senderObject userInfo:(NSDictionary *)userInfo

//发送通知

- (void)postNotification:(NSNotification *)notification


接收方(观察者,监听者):

//注册通知

- (void)addObserver:(id)notificationObserver selector:(SEL)notificationSelector name:(NSString *)notificationName object:(id)notificationSender

//取消通知

- (void)removeObserver:(id)notificationObserver


e.g.

======AppDelegate.h文件======

#import <UIKit/UIKit.h>


/*extern:声明全局变量(不初始化),外部类可访问到 */

//notificationName

extern NSString *const kSetPersonInfoNotification; 

//The first-name key in the user-info dictionary of our notification 

extern NSString *const kSetPersonInfoKeyFirstName; 

// The last-name key in the user-info dictionary of our notification 

extern NSString *const kSetPersonInfoKeyLastName;


@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (nonatomic, strong) UIWindow *window;

@end

=======AppDelegate.m文件=====

#import "AppDelegate.h"

#import "Person.h"


NSString *const kSetPersonInfoNotification = @"SetPersonInfoNotification";

NSString *const kSetPersonInfoKeyFirstName = @"firstName";

NSString *const kSetPersonInfoKeyLastName = @"lastName";


@implementation AppDelegate

- (BOOL) application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{

    Person *steveJobs = [[Person alloc] init];   

    NSNotification *notification =

        [NSNotification  notificationWithName:kSetPersonInfoNotification

                                       object:self  //sender

                                     userInfo:@{kSetPersonInfoKeyFirstName : @"Steve",

                                                 kSetPersonInfoKeyLastName : @"Jobs"}];

    

    /* 在postNotification后,person class监听到并从notification中的userInfo中获取到了相关信息 */

   [[NSNotificationCenter defaultCenter] postNotification:notification];

    NSLog(@"Person's first name = %@", steveJobs.firstName);

    NSLog(@"Person's last name = %@", steveJobs.lastName);

    

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    self.window.backgroundColor = [UIColor whiteColor];

    [self.window makeKeyAndVisible];

    return YES;

}

========Person.h=========

#import <Foundation/Foundation.h>

@interface Person : NSObject

@property (nonatomic, copy) NSString *firstName;

@property (nonatomic, copy) NSString *lastName;

@end

========Person.m=========

#import "Person.h"

#import "AppDelegate.h"

@implementation Person

- (void) handleSetPersonInfoNotification:(NSNotification *)paramNotification{

    self.firstName =paramNotification.userInfo[kSetPersonInfoKeyFirstName];

    self.lastName = paramNotification.userInfo[kSetPersonInfoKeyLastName];   

}

//instancetype:返回类型  id:作为参数

- (instancetype) init{

    self = [super init];

    if (self != nil){       

       NSNotificationCenter *center = [NSNotificationCenter defaultCenter];

        //注册通知  addObserver必须要对应一个removeObserver,否则可能会造成内存泄漏     

        [center addObserver:self  //观察者,监听者

                  selector:@selector(handleSetPersonInfoNotification:) //接收到通知时,执行的方法,必须要有一个NSNotification参数

                      name:kSetPersonInfoNotification   //通知名称

                    object:[[UIApplication sharedApplication] delegate]];  //发送(通知)者        

    }

    return self;

}

- (void) dealloc{

    //取消注册

   [[NSNotificationCenter defaultCenter] removeObserver:self];

}

@end



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值