`

NSNotificationCenter

阅读更多
定义一个消息中心
    [[NSNotificationCenter defaultCenter] 
     addObserver:self
     selector:@selector(changeByNotif:)
     name:@"changeByNotif"
     object:nil];


-(void) changeByNotif:(id) sender
{
    CCLOG(@"接收到消息");
}



发送一个消息
[[NSNotificationCenter defaultCenter] postNotificationName:@"changeByNotif" object:nil];//发出一个消息,撤销工作窗体


带参数传递,接收时使用。
-(void) changeByNotif:(NSNotification*) notification
{
        object *obj = [notification object];
}
分享到:
评论

相关推荐

    ios-对NSNotificationCenter的封装.zip

    这个`ios-对NSNotificationCenter的封装.zip`文件提供了一个针对NSNotification的封装,目的是简化使用过程,增强代码的可读性和可维护性。下面将详细解释封装的几个核心方面。 首先,`添加观察者`是NSNotification...

    ios demo,NSNotificationCenter,app进入后台时的调用和就、进入前台时的调用

    本示例“ios demo,NSNotificationCenter,app进入后台时的调用和进入前台时的调用”是关于如何利用`NSNotificationCenter`来监听应用状态的变化,特别是当应用进入后台和返回前台时的事件处理。`...

    NSNotificationCenter 的使用

    `NSNotificationCenter` 是苹果 macOS 和 iOS 开发中的一个关键组件,属于Foundation框架的一部分,它提供了一个广播消息机制,使得对象可以在不直接引用彼此的情况下进行通信。这个机制被称为“观察者模式”或...

    SFObservers, NSNotificationCenter和KVO自动删除观察者.zip

    SFObservers, NSNotificationCenter和KVO自动删除观察者 在任何项目中,我不再使用 SFObservers,但仍然会接受请求的请求。命令行目SFObservers是在NSNotificationCenter和KVO中为观察者 Pattern 添加自动删除的类别...

    网络连接 与 NSNotificationCenter

    标题 "网络连接 与 NSNotificationCenter" 涉及到的是iOS开发中的两个核心概念:网络状态监测和应用程序的通知中心机制。这篇博文可能讨论了如何利用苹果的 Reachability 框架来检测设备的网络状态,并结合 ...

    OC-NSNotificationCenter.异步线程下载图片zip

    在iOS开发中,`NSNotificationCenter` 是一个非常重要的组件,它属于Foundation框架,用于实现对象间的松耦合通信。`OC-NSNotificationCenter.异步线程下载图片zip` 的标题表明我们将探讨如何利用`...

    类似 Observer Pattern 的 NSNotificationCenter (实例)

    【标题】:“类似 Observer Pattern 的 NSNotificationCenter(实例)” 在iOS和macOS开发中,`NSNotificationCenter` 是一个关键的组件,它实现了一种类似于观察者模式(Observer Pattern)的机制。观察者模式是一...

    ios 消息NSNotificationCenter多页面传参

    标题"ios 消息NSNotificationCenter多页面传参"指的是使用`NSNotificationCenter`在不同页面之间传递参数,以便更新界面。 `NSNotificationCenter`是Foundation框架的一部分,它提供了一个观察者模式的实现,使得一...

    使用NSNotificationCenter的通知发布及监听DEMO

    在iOS开发中,NSNotificationCenter是Objective-C和Swift中用于对象间通信的重要机制。它提供了一种松耦合的方式,让对象可以在不直接引用彼此的情况下传递信息。本DEMO旨在通过实例来详细介绍如何使用...

    ios NSNotificationCenter通知的简单使用

    通知中心(NSNotificationCenter)采用单例的模式,整个系统只有一个通知中心,通过如下代码获取: //获取通知中心 [NSNotificationCenter defaultCenter]; 注册通知监听器方法: //observer为监听器 //aSelector...

    iOS NSNotificationCenter通知中心使用小结

    iOS中的NSNotificationCenter是系统提供的一种消息传递机制,它允许对象发布通知,其他对象可以注册接收这些通知,从而实现不同对象间的数据同步或者事件响应。在iOS开发中,NSNotificationCenter经常与Delegate模式...

    objective-C NSNotificationCenter (通知

    iOS 通知 转发

    iOS基础——通知代理之NSNotificationCenter、Delegate

    在iOS开发中,通知代理是实现对象间通信的重要机制,主要分为两个方面:NSNotificationCenter和Delegate。这两种方式都允许一个对象监听并响应其他对象的事件,但它们各自有其特性和适用场景。 首先,我们来详细...

    iOS基础——通知代理之NSNotificationCenter、Delegate(新)

    在iOS开发中,通知代理是实现对象间通信的重要机制,主要分为`NSNotificationCenter`和`Delegate`两种方式。本文将深入探讨这两种技术,并提供一个`DelegateDemo`实例来帮助理解。 首先,我们来看`NSNotification`...

    NSNotificationCenter详解

    首先,我们需要了解NSNotification的两个关键类:NSNotification和NSNotificationCenter。NSNotification对象代表一个特定的通知事件,包含了通知的名称、发送者以及任何相关的数据。而NSNotificationCenter则是通知...

    FXNotifications, 一个NSNotificationCenter的替代 API.zip

    FXNotifications, 一个NSNotificationCenter的替代 API 命令行目FXNotifications是 NSNotificationCenter的一种类别,提供了基于基于的API,更简单易用,并避免了官方API的不同内存漏洞。有关更多详细信息,请参见...

    izevent:NSNotificationCenter的纯替代品

    IZEvent IZEvent是NSNotificationCenter的纯Swift替代方案。 它努力做到简单,安全和简单。 Pro的NSNotificationCenter上: 内存安全:不会发生内存泄漏,也不需要在deinit中删除观察者线程安全:默认情况下将事件...

    AutoRemoveObserverDemo:自动删除NSNotificationCenter观察器的演示

    替换NSNotificationCenter的 addObserver... 方法, 新方法中用一个 Wrapper对象来封装传进来的Observer. 想通过真正的observer被释放时触发wrapper的 realObserver setter方法, 从而移除通知. //Wrapper.h @...

Global site tag (gtag.js) - Google Analytics