ios NSNotificationCenter通知的简单使用
程序员文章站
2023-12-13 10:01:52
通知类本身比较简单,大概就分为注册通知监听器、发送通知,注销通知监听器三个方法;通知中心(nsnotificationcenter)采用单例的模式,整个系统只有一个通知中心...
通知类本身比较简单,大概就分为注册通知监听器、发送通知,注销通知监听器三个方法;通知中心(nsnotificationcenter)采用单例的模式,整个系统只有一个通知中心,通过如下代码获取:
//获取通知中心 [nsnotificationcenter defaultcenter];
注册通知监听器方法:
//observer为监听器 //aselector为接到收通知后的处理函数 //aname为监听的通知的名称 //object为接收通知的对象,需要与postnotification的object匹配,否则接收不到通知 - (void)addobserver:(id)observer selector:(sel)aselector name:(nullable nsnotificationname)aname object:(nullable id)anobject;
发送通知的方法:
//需要手动构造一个nsnotification对象 - (void)postnotification:(nsnotification *)notification; //aname为注册的通知名称 //anobject为接受通知的对象,通知不传参时可使用该方法 - (void)postnotificationname:(nsnotificationname)aname object:(nullable id)anobject; //auserinfo为将要传递的参数,类型为字典类型 //通知需要传参数时使用下面这个方法,其他同上。 - (void)postnotificationname:(nsnotificationname)aname object:(nullable id)anobject userinfo:(nullable nsdictionary *)auserinfo;
注销通知监听器方法:
//删除通知的监听器 - (void)removeobserver:(id)observer; //删除通知的监听器,aname监听的通知的名称,anobject监听的通知的发送对象 - (void)removeobserver:(id)observer name:(nullable nsnotificationname)aname object:(nullable id)anobject; //以block的方式注册通知监听器 - (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));
使用情况:
nsnotificationcenter类一般用于一个对象传递事件给另外一个对象,在另一个对象中触发某些方法,可以实现跨视图的交互。我在最近一个月内用到了两次nsnotificationcenter类。
①在对项目进行国际化时,在切换语言时采用通知的方式,使其他界面进行刷新(需要在主线程内)。
②使用sgpagingview时,需要实现pagecontentview中的内容在多选状态时,pagetitleview禁止进行切换的功能。看了sgpagingview提供的方法是没有这个的,所以就采用了nsnotificationcenter。在进入多选状态时发一条通知,在退出多选状态时发一条通知(方法比较简陋,如果有更好的方法请不吝赐教)。
//注册通知监听器 [notifyutil addnotify:notify_disable_switch observer:self selector:@selector(disableswitch) object:nil]; [notifyutil addnotify:notify_allow_switch observer:self selector:@selector(allowswitch) object:nil]; //调用方法 //禁止pagetitleview进行切换 -(void)disableswitch{ self.pagetitleview.userinteractionenabled = no; } //允许pagetitleview进行切换 -(void)allowswitch{ self.pagetitleview.userinteractionenabled = yes; } //注销通知监听器 - (void) dealloc{ [notifyutil removenotify:notify_disable_switch observer:self]; [notifyutil removenotify:notify_allow_switch observer:self]; }
注:用notifyutil对nsnotificationcenter类进行了一个简单的封装,参数基本都一致,就不贴notifyutil的代码了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。