我是靠谱客的博主 儒雅小松鼠,最近开发中收集的这篇文章主要介绍iOS - 通知,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

// 创建通知的两种形式
//[NSNotification notificationWithName:<#(nonnull NSString *)#> object:<#(nullable id)#>]
//[NSNotification notificationWithName:<#(nonnull NSString *)#> object:<#(nullable id)#> userInfo:<#(nullable NSDictionary *)#>]
// 发送通知的三种形式
/**
* 1. 直接将一个创建好的通知发送出去
*
* Notification
创建好的通知
*
*/
//[NSNotificationCenter defaultCenter] postNotification:(nonnull NSNotification *)
/**
* 2. 在发送通知的方法里,创建通知
*
* NotificationName :
通知名
* object
:
通知发布者
*
*/
//[NSNotificationCenter defaultCenter] postNotificationName:(nonnull NSString *) object:(nullable id)
/**
* 3. 在发送通知的方法里,创建通知
*
* NotificationName :
通知名
* object
:
通知发布者
* userInfo
:
额外信息
*
*/
//[NSNotificationCenter defaultCenter] postNotificationName:(nonnull NSString *) object:(nullable id) userInfo:(nullable NSDictionary *)
// 接收通知的形式
//[NSNotificationCenter defaultCenter] addObserver:(nonnull id) selector:(nonnull SEL) name:(nullable NSString *) object:(nullable id)
//[NSNotificationCenter defaultCenter] addObserverForName:(nullable NSString *) object:(nullable id) queue:(nullable NSOperationQueue *) usingBlock:^(NSNotification * _Nonnull note) {}
//[NSNotificationCenter defaultCenter] addObserver:(nonnull NSObject *) forKeyPath:(nonnull NSString *) options:(NSKeyValueObservingOptions) context:(nullable void *)

最后

以上就是儒雅小松鼠为你收集整理的iOS - 通知的全部内容,希望文章能够帮你解决iOS - 通知所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部