zoukankan      html  css  js  c++  java
  • ios的notification机制是同步的还是异步的

    与javascript中的事件机制不同。ios里的事件广播机制是同步的,默认情况下。广播一个通知,会堵塞后面的代码:

    Objc代码  收藏代码
    1. -(void) clicked  
    2. {  
    3.     NSNotificationCenter *center =  [NSNotificationCenter defaultCenter];  
    4.     [center postNotificationName:@"event_happend" object:self];  
    5.       
    6.     NSLog(@"all handler done");  
    7. }  


    按下button后。发送一个广播。此前已经注冊了2个此事件的侦听者

    Objc代码  收藏代码
    1. -(id) init  
    2. {  
    3.     self = [super init];  
    4.     if(self){  
    5.         [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(whenReceive:) name:@"event_happend" object:nil];  
    6.     }  
    7.     return self;  
    8. }  
    9.   
    10.   
    11. -(void) whenReceive:(NSNotification*) notification  
    12. {  
    13.     NSLog(@"im1111");  
    14. }  

    Objc代码  收藏代码
    1. -(id) init  
    2. {  
    3.     self = [super init];  
    4.     if(self){  
    5.         [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(whenReceive:) name:@"event_happend" object:nil];  
    6.     }  
    7.     return self;  
    8. }  
    9.   
    10.   
    11. -(void) whenReceive:(NSNotification*) notification  
    12. {  
    13.     NSLog(@"im22222");  
    14. }  

    运行这段代码,首先会输出im1111,然后是im22222,最后才是all handler done。调试发现,代码始终是跑在同一个线程中(广播事件的线程),广播事件之后的代码被堵塞。直到全部的侦听者都运行完响应

    所以,因为NotificationCenter的这个特性,假设希望广播的事件异步处理,则须要在侦听者的方法里开启新线程。应该把Notification作为组件间解耦的方式,而不是利用它来实现异步处理

  • 相关阅读:
    Android之SQLite分页读取
    android 对sqlite数据库的增删改查
    Android如何导入已有的外部数据库(在raw下自己导入db文件)
    Android自定义对话框(Dialog)位置,大小
    android UI进阶之实现listview中checkbox的多选与记录
    Android开发教程 数据存储 SQLite
    Android 中的ORM框架
    android错误信息大整理
    C#中导出Execl
    关于用户退出,点击浏览器后退仍可回到原来页面解决二
  • 原文地址:https://www.cnblogs.com/cxchanpin/p/7049120.html
Copyright © 2011-2022 走看看