源码

iOS 通知多线程的使用

一、通知使用的回顾

1.1、通知使用一

添加通知

/**
  添加通知
  observer:观察者
  aSelector:只要一监听到通知就会调用观察者这个方法
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)addObserver:(id)observer selector:(SEL)aSelector name:(nullable NSNotificationName)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(reciveNote) name:@"note" object:nil];

发送通知

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

接收通知的消息

-(void)reciveNote:(NSNotification *)notify{

    NSLog(@"通知");
}

移除通知

-(void)dealloc{
    [[NSNotificationCenter defaultCenter]removeObserver:self];
}

1.2、通知使用二(block的通知)

定义监听的返回值

@property (nonatomic, weak) id observe;

添加通知

/**
  name:通知名称
  object:谁发出的通知
  queue:决定block在哪个线程执行,nil:在发布通知的线程中执行
  usingBlock:只要监听到通知,就会执行该blocl
  - (id )addObserverForName:(nullable NSNotificationName)name object:(nullable id)obj queue:(nullable NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0));
  注意:一定要移除通知
 */
self.observe = [[NSNotificationCenter defaultCenter]addObserverForName:@"note" object:nil queue:nil usingBlock:^(NSNotification * _Nonnull note) {
     
     // 只要监听到通知就会被调用
     NSLog(@"当前的线程=%@",[NSThread currentThread]);
     
     NSLog(@"%@",self);
     
}];

发送通知

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知
  - (void)postNotificationName:(NSNotificationName)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

移除通知

[[NSNotificationCenter defaultCenter]removeObserver:self.observe];

注意:一定要移除通知

二、通知多线程的使用

2.1、利用 1.1 的通知方式

异步 添加通知

// 监听通知:异步
dispatch_async(dispatch_get_global_queue(0, 0), ^{

   [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(reciveNote:) name:@"note" object:nil];
});

异步  发送通知

dispatch_async(dispatch_get_global_queue(0, 0), ^{

   [[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];
});

提示:接收通知的方法里面打印的是:子线程

同步  发送通知

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

0

提示:接收通知的方法里面打印的是:主线程

接收通知的消息

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

1

提示:很多时候我们可能不知道发送通知的线程,我们需要在接收通知的方法里面进行更新UI,我们可以在接收方法里面使用主线程,如下

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

2

移除通知

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

3

结论:不管添加通知在主线程还是子线程,接收通知的方法所在的线程是由发送通知的线程决定的。

2.2、利用 1.2 的通知方式:和上面的一样,我直接说有关刷新的问题

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

4

分析:如果上面的是:queue 为 nil,那么block里面的线程是由发送通知的线程决定,那么如果block里面是子线程我们就无法刷新UI了,解决办法是把 nil 改为 [NSOperationQueue mainQueue],不管发送通知的线程是什么,block里面都是主线程,如下

/**
  发送通知
  aName:通知名称
  anObject:谁发出的通知或者是一些参数
  - (void)postNotificationName:(NSNotificationName:)aName object:(nullable id)anObject;
 */
[[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];

5

最后这是调试的 demo

作者:IIronMan

链接:https://www.jianshu.com/p/2c0b863c202f

(0)

本文由 投稿者 创作,文章地址:https://blog.isoyu.com/archives/ios-tongzhiduoxianchengdeshiyong.html
采用知识共享署名4.0 国际许可协议进行许可。除注明转载/出处外,均为本站原创或翻译,转载前请务必署名。最后编辑时间为:4月 25, 2019 at 07:08 下午

热评文章

发表回复

[必填]

我是人?

提交后请等待三秒以免造成未提交成功和重复