cocos2d-x-3.3rc2 通知中心

添加监听:

 声明:

    //_target 被监听对象 
    //_target->*_selector  回调函数
    //name 消息id
    //sender 发送者 或 数据 
    void addObserver(Ref *target, SEL_CallFuncO selector, const std::string& name, Ref *sender);
 

 使用: 

     NotificationCenter::getInstance()->addObserver(this, CC_CALLFUNCO_SELECTOR(Light::switchStateChanged), MSG_SWITCH_STATE, nullptr);


发送消息:

声明:

    void postNotification(const std::string& name);

    void postNotification(const std::string& name, Ref *sender);

使用:

    NotificationCenter::getInstance()->postNotification(MSG_SWITCH_STATE, (Ref*)(intptr_t)item->getSelectedIndex());

注意:

    //_target 被监听对象 
    //_target->*_selector  回调函数

    if (_target) 
    {
		if (sender) {
			(_target->*_selector)(sender);
		} else {
			(_target->*_selector)(_sender);
		}
    }


删除监听:

声明:

    void removeObserver(Ref *target,const std::string& name);
    
    int removeAllObservers(Ref *target);


 

使用:

    NotificationCenter::getInstance()->removeObserver(this, MSG_SWITCH_STATE);


回调函数:


void Light::switchStateChanged(Ref* obj)
{
    s_bSwitchOn = obj == 0x00 ? false : true;
    updateLightState();
}

void Light::updateLightState()
{
    if (s_bSwitchOn && _connected)
    {
        this->setOpacity(255);
    }
    else
    {
        this->setOpacity(50);
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值