iOS 通知多线程的使用

作者: IIronMan | 来源:发表于2019-04-24 23:56 被阅读26次

一、通知使用的回顾

  • 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 <NSObject>)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];
      });
      

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

    • 同步 发送通知

      dispatch_sync(dispatch_get_global_queue(0, 0), ^{
      
         [[NSNotificationCenter defaultCenter]postNotificationName:@"note" object:nil];
      });
      

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

    • 接收通知的消息

      -(void)reciveNote:(NSNotification *)notify{
      
         NSLog(@"当前接收通知的线程=%@",[NSThread currentThread]);
      }
      

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

      -(void)reciveNote:(NSNotification *)notify{
      
          NSLog(@"当前接收通知的线程=%@",[NSThread currentThread]);
          dispatch_sync(dispatch_get_main_queue(), ^{
                // 在此刷新UI
          });
      }
      
    • 移除通知

      -(void)dealloc{
         [[NSNotificationCenter defaultCenter]removeObserver:self];
      }
      
    • 结论不管添加通知在主线程还是子线程,接收通知的方法所在的线程是由发送通知的线程决定的。

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

    self.observe = [[NSNotificationCenter defaultCenter]addObserverForName:@"note" object:nil queue:nil usingBlock:^(NSNotification * _Nonnull note) {
          // 只要监听到通知就会被调用
          NSLog(@"当前的线程=%@",[NSThread currentThread]);
          NSLog(@"%@",self);
    }];
    
    • 分析:如果上面的是:queuenil,那么block里面的线程是由发送通知的线程决定,那么如果block里面是子线程我们就无法刷新UI了,解决办法是把 nil 改为 [NSOperationQueue mainQueue],不管发送通知的线程是什么,block里面都是主线程,如下

      self.observe = [[NSNotificationCenter defaultCenter]addObserverForName:@"note" object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification * _Nonnull note) {
          // 只要监听到通知就会被调用
          NSLog(@"当前的线程=%@",[NSThread currentThread]);
      }];
      

最后这是调试的 demo

相关文章

  • iOS 通知多线程的使用

    iOS 通知多线程的使用 iOS 通知多线程的使用

  • iOS 通知多线程的使用

    一、通知使用的回顾 1.1、通知使用一添加通知/** 添加通知 observer:观察者 aSelector...

  • 整理一下知识点

    iOS多线程的使用 iOS核心优化

  • 整理

    KVO的实现原理与具体应用 2.通知 3.iOS多线程----NSOperation 4.iOS多线程----GC...

  • 多线程:iOS中的多线程实现方案

    一、iOS的多线程方案二、NSThread的简单使用三、NSOperation的简单使用 一、iOS的多线程方案 ...

  • iOS复习之多线程

    关于iOS多线程,你看我就够了iOS多线程--彻底学会多线程使用dispatch_group来进行线程同步 iOS...

  • OC--各种线程锁

    参考:正确使用多线程同步锁@synchronized()iOS中的锁iOS多线程安全详解iOS 常见知识点(三):...

  • iOS多线程使用踩过的坑

    iOS多线程使用踩过的坑 iOS 开发过程中,我们经常使用系统提供的方法使用多线程(全局并发)包括: 使用起来很方...

  • iOS多线程-NSThread实践

    推荐文章 iOS多线程-NSOperation实践 iOS多线程-GCD实践 NSThread是基于线程使用,轻量...

  • iOS 通知

    iOS 通知传参使用方法 尽量不要在viewWillDisappear:方法中移除通知 iOS通知传值的使用 1、...

网友评论

    本文标题:iOS 通知多线程的使用

    本文链接:https://www.haomeiwen.com/subject/bqkngqtx.html