本项目高仿NSNotification
框架。
platform :ios, '7.0'
target 'TargetName' do
pod 'BJNotification', '~> 1.0'
end
git clone https://github.com/beijiahiddink/BJNotification.git
open BJNotification
使用方式大体与NSNotification
使用类似,整个框架是线程安全的。
[[BJNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveTip:) name:@"TipNotification" object:nil];
[[BJNotificationCenter defaultCenter] postNotificationName:@"TipNotification" object:nil];
[[BJNotificationCenter defaultCenter] removeObserver:self];
喜欢本项目的可以给我加星哦!
BJNotification is released under the MIT license. See LICENSE for details