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

通知 - NSNotificationCenter

时间:2015-05-08 01:34:28      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

1、每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信;

2、任何一个对象都可以向通知中心发布通知(NSNotification), 描述自己在做什么。其他感兴趣的对象(Observer)可以申请在某个特定通知发布时(或在某个特定的对象发布通知时)收到这个通知。

3、通知是多对多的关系:

技术分享

 

4、一个完整的通知一般包含3个属性:

    1)- (NSString *)name;   //通知的名称

    2)- (id)object;   //通知发布者(是谁要发布通知)

    3)- (NSDictionary *)userInfo;   //一些额外的信息(通知发布者传递给通知接收者的信息内容)

5、初始化一个通知(NSNotification)对象的构造函数:

     1) + (instancetype)notificationWithName:(NSString *)aName object:(id)anObject;

     2) + (instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;

     3) - (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;

6、注册通知监听器:

  通知中心提供了方法类注册一个坚挺通知的监听器(Observer):

- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;

-->observer: 监听器。即谁要接收这个通知

-->aSelector: 收到通知后,回调监听器的这个方法,并且把通知对象做为参数传入

--> aName: 通知的名称。如果为nil, 那么无论通知的名称是什么,监听器都能收到这个通知

--> anObject: 通知发布者。如果anObject和aName都为nil, 监听器都收到所有的通知

7、代码示例:

    创建一个通知发布者类NewsCompany

NewsCompany.h文件代码:

技术分享
#import <Foundation/Foundation.h>

@interface NewsCompany : NSObject

+ (instancetype)newsCompanyWithName:(NSString *)name; //类构造方法
@property (nonatomic, copy) NSString *name;  //消息发布者名称

@end
View Code

NewsCompany.m文件代码:

技术分享
#import "NewsCompany.h"

@implementation NewsCompany

+ (instancetype)newsCompanyWithName:(NSString *)name{
    NewsCompany *company = [[self alloc] init];
    company.name = name;
    return company;
}

@end
View Code

创建一个通知接受者类(监听者)Person

Person.h文件代码:

技术分享
#import <Foundation/Foundation.h>

@interface Person : NSObject

+ (instancetype)personWithName:(NSString *)name; //类实例方法
@property (nonatomic, copy) NSString *name; //监听对象的名称

//监听通知的方法
- (void)MonitorMessage:(NSNotification *)notification;

@end
View Code

Person.m文件代码:

技术分享
#import "Person.h"

@implementation Person

+ (instancetype)personWithName:(NSString *)name
{
    Person *per = [[self alloc] init];
    per.name = name;
    return per;
}

- (void)MonitorMessage:(NSNotification *)notification
{
    NSLog(@"监听者: %@,通知名称:%@, 其他信息:%@", self.name, notification.name, notification.userInfo);
}

//就算在arc机制下,还是要移除当前监听者的所有监听行为
- (void)dealloc
{
    NSLog(@"移除当前监听者: %@", self.name);
    [[NSNotificationCenter defaultCenter] removeObserver:nil];   //移除当前监听者的所有监听行为
}
@end
View Code

main方法里执行代码为:

技术分享
#import <Foundation/Foundation.h>
#import "NewsCompany.h"
#import "Person.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool {

        //创建两个发布通知者对象
        NewsCompany *com1 = [NewsCompany newsCompanyWithName:@"腾讯"];
        NewsCompany *com2 = [NewsCompany newsCompanyWithName:@"新浪"];
        
        //创建五个监听者对象
        Person *per1 = [Person personWithName:@"谭大"];
        Person *per2 = [Person personWithName:@"毛二"];
        Person *per3 = [Person personWithName:@"张三"];
        Person *per4 = [Person personWithName:@"李四"];
        Person *per5 = [Person personWithName:@"王五"];
        
        //取得通知中心对象
        NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
        
        //设置两个通知的名称
        NSString *notice1 = @"一路一带";
        NSString *notice2 = @"亚投行";
        
        //步骤1、先注册通知的监听者
        /* 
         - (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
         参数说明:
         observer: 要注册的监听者对象
         aSelector: 监听者的监听方法
         aName: 通知名称,为nil表示监听者监听通知中心的所有通知
         anObject: 通知发布者对象,为nil表示监听者监听所有的通知发布者
         如果通知发布者没有发布某个通知,则注册为该通知发布者的监听者将监听不到信息
        */
        [center addObserver:per1 selector:@selector(MonitorMessage:) name:nil object:nil];
        [center addObserver:per2 selector:@selector(MonitorMessage:) name:notice1 object:nil];
        [center addObserver:per3 selector:@selector(MonitorMessage:) name:nil object:com1];
        [center addObserver:per4 selector:@selector(MonitorMessage:) name:notice1 object:com1];
        
        //反列:per5对象注册的通知发布者com1没有发布通知notice2, 则per5监听者对象将监听不到通知
        [center addObserver:per5 selector:@selector(MonitorMessage:) name:notice2 object:com1];
        
        //步骤2、通知对象再发布通知
        [center postNotificationName:notice1 object:com1 userInfo:@{@"otherInfo": @"1111111"}];
        [center postNotificationName:notice2 object:com2 userInfo:@{@"otherInfo": @"2222222"}];
        [center postNotificationName:notice1 object:com2 userInfo:@{@"otherInfo": @"3333333"}];
    }
    return 0;
}
View Code

打印结果为:

监听者: 谭大,通知名称:一路一带, 其他信息:{ otherInfo = 1111111; }
监听者: 毛二,通知名称:一路一带, 其他信息:{ otherInfo = 1111111; }
监听者: 张三,通知名称:一路一带, 其他信息:{ otherInfo = 1111111; }
监听者: 李四,通知名称:一路一带, 其他信息:{ otherInfo = 1111111; }
监听者: 谭大,通知名称:亚投行, 其他信息:{ otherInfo = 2222222; }
监听者: 谭大,通知名称:一路一带, 其他信息:{ otherInfo = 3333333; }
监听者: 毛二,通知名称:一路一带, 其他信息:{ otherInfo = 3333333; }
移除当前监听者: 王五
移除当前监听者: 李四
移除当前监听者: 张三
移除当前监听者: 毛二
移除当前监听者: 谭大

说明:1)、当注册监听者时,通知名称和通知发布者为nil, 则默认监听者注册为通知中心的所有通知发布者的通知;

         2)、如果注册监听者时,通知发布者没有发布该通知,则监听者监听不到该通知

 

UIDevice通知

1)、UIDevice类提供了一个单列对象,它代表着设备,通过它可以获得一些设备相关的信息,比如电池电量值(batteryLevel)、电池状态(batteryState)、设备的类型(model, 比如iPod、iPhone等) 、设备的系统(systemVersion)

2)、通过[UIDevice currentDevice]可以获取这个单列对象

3)、UIDevice对象会不间断的发布一些通知,下列是UIDevice对象所发布通知的名称常量:

     UIDeviceOrientationDidChangeNotification  //设备旋转

     UIDeviceBatteryStateDidChangeNotification //电池状态改变

     UIDeviceBatteryLevelDidChangeNotification  //电池电量改变

     UIDeviceProximityStateDidChangeNotification  //近距离传感器( 比如设备贴近了使用者的脸部)

通知 - NSNotificationCenter

标签:

原文地址:http://www.cnblogs.com/tandaxia/p/4486076.html

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