让 NSNotification 用起来更舒爽 :)

NSNotification 是我们在 iOS 中经常使用的一个类

我们可以简单的修改重构我们的代码,来更舒爽的发送和接收 NSNotification

比如我们要在图片下载完之后发送一个通知,并传递图片和图片 url 参数.
传统的使用方式如下:

- (void)viewDidLoad {
    [super viewDidLoad];
    
    UIImage *img;
    NSURL *imgUrl;
    NSDictionary *userInfo=@{@"image":img,@"imgUrl":imgUrl};
    [[NSNotificationCenter defaultCenter]postNotificationName:@"NotificationName" object:self userInfo:userInfo];
    
    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(handleNotification:) name:@"NotificationName" object:nil];
    
}

-(void)handleNotification:(NSNotification*)noti{
    UIImage *img= noti.userInfo[@"image"];
    NSURL *imgUrl= noti.userInfo[@"imgUrl"];
}

开始重构

现在,我们来改造上面的代码.
首先创建一个 NSNotifcation Category

#import <Foundation/Foundation.h>
@import UIKit;

//将 Notification Name 定义为常量
extern NSString *const kDownloadImageCompleteNotification;

@interface NSNotification (DownloadImage)
//注意下面2个属性是 readonly 
//定义 image 和 imageURl 属性,我们可以使用 notification.image , notification.imageUrl 点语法来访问userInfo 里的内容
@property (strong,nonatomic,readonly) UIImage *image; 
@property (strong,nonatomic,readonly) NSURL *imageUrl;
//方便我们发送 NSNotifcation
+(void)postDownloadImageNotification:(id)object image:(UIImage*)img url:(NSURL*)imageUrl;
@end

.m 文件

#import "NSNotification+DownloadImage.h"
#import "NSNotification+Post.h"

NSString *const kDownloadImageCompleteNotification=@"kDownloadImageCompleteNotification";
//将 userinfo 字典的 key 定义为常量
static NSString *const kDownloadedImage=@"kDownloadedImage";
static NSString *const kDownloadedImageUrl=@"kDownloadedImageUrl";

@implementation NSNotification (DownloadImage)

+(void)postDownloadImageNotification:(id)object image:(UIImage*)img url:(NSURL*)imageUrl{
    [[NSNotification notificationWithName:kDownloadImageCompleteNotification object:object userInfo:@{kDownloadedImage:img,kDownloadedImageUrl:imageUrl}]post];
}

//提供方便的读取 userInfo 字典value 的 Getter 方法
-(UIImage *)image{
    return self.userInfo[kDownloadedImage];
}

-(NSURL *)imageUrl{
    return self.userInfo[kDownloadedImageUrl];
}
@end

其中#import "NSNotification+Post.h"是另一个 NSNotification 的分类
实现如下

@interface NSNotification (Post)
-(void)post;
@end

.m 中

@implementation NSNotification (Post)
-(void)post{
    [[NSNotificationCenter defaultCenter]postNotification:self];
}
@end

改造完毕

现在我们使用 NSNotification 的方式如下:
先引入头文件 #import "NSNotification+DownloadImage.h"
发送:

[NSNotification postDownloadImageNotification:self image:img url:imgUrl];

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(handleNotification:) name:kDownloadImageCompleteNotification object:nil];

接收:

-(void)handleNotification:(NSNotification*)noti{
    noti.image;
    noti.imageUrl;
}

我们只简单的重构了一下代码,就让 NSNotification 使用起来更舒爽了.

Demo 中还有一个更复杂的 NSNotification+UploadMedia 分类来提供参考,所有Demo代码可以在 GitHub 中获取

补充

  • 如果你的 App 里大量使用 NSNotification, 可以考虑为方法属性等添加前缀.
  • NSNotification 类似 NSString,NSArray 是类簇,在 XCode Console 查看是 NSConcretNotification
  • 关于 Subclass NSNotification,创建 NSNotification 子类也是一个简化发送接收通知的方式.但一般来说,我们都是用 userInfo 来传值,下面是官方文档关于创建 NSNotification 子类的说明,感觉创建子类会更加麻烦.

Creating Subclasses
You can subclass NSNotification to contain information in addition to the notification name, object, and dictionary. This extra data must be agreed upon between notifiers and observers.
NSNotification is a class cluster with no instance variables. As such, you must subclass NSNotification and override the primitive methods name, object, and userInfo. You can choose any designated initializer you like, but be sure that your initializer does not call [super init]. NSNotification is not meant to be instantiated directly, and its init method raises an exception.

Ref :

stackoverflow

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容

  • 禅与 Objective-C 编程艺术 (Zen and the Art of the Objective-C C...
    GrayLand阅读 1,600评论 1 10
  • 基础 1. 为什么说Objective-C是一门动态的语言? 2. 讲一下MVC和MVVM,MVP? 3. 为...
    波妞和酱豆子阅读 3,301评论 0 46
  • 关于你,我一直跟朋友抱怨你脾气不好,抱怨你跟我沟通太少,甚至大男子主义,玻璃心,但是我却很少甚至不提你的优点,比如...
    wan丽阅读 189评论 0 0
  • 二分查找 定义 对已经排好序的数组进行查找对数组进行操作在查找失败最多次数(向下取整加一) 二分查找的时间复杂度:...
    Juinjonn阅读 1,191评论 0 11
  • 在 炎炎的烈季 风灌满 紫晶扇的叶子 磨热的记忆 因此变得滚烫 空气燃起了火 泪成了晒干的云雾 黎明 在饥渴中苏醒...
    一池凹水凸龙阅读 304评论 3 10