通知

1.通知
发送者
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
NSDictionary *userInfo = @{ AFNetworkingReachabilityNotificationStatusItem: @(status) };
[notificationCenter postNotificationName:AFNetworkingReachabilityDidChangeNotification object:nil userInfo:userInfo];
接收者(包括监听方法)

通知_第1张图片
Paste_Image.png

你可能感兴趣的:(通知)