UIButton执行runAction无效

btnPlate->runAction(CCSequence::create(
CCScaleTo::create(0.5f, 1.1f),
CCScaleTo::create(0.5f, 1.2f),
CCCallFuncO::create(this, callfuncO_selector(UILayer::test), btnPlate),
NULL));

void UILayer::test(CCObject* pSender)
{
UIButton* button = static_cast<UIButton*>(pSender);
if (button)
{
CCLOG(“can cast to UIButton”);
}
}

UIButton* btnPlate执行runActione无动作,回调函数没有执行,请问大神们这是什么情况?