cocos3.4 schedule问题

如图所示。
cocos2dx版本:3.4
Xcode版本:6.4

顶一下~
:6::6::6::6:

sch->schedule(const ccSchedulerFunc &callback, <#void *target#>, <#float interval#>, <#bool paused#>, <#const std::string &key#>);
第一个参数是 ccSchedulerFunc的,它是一个回调函数;
改成这样子就可以:sch->schedule(CC_CALLBACK_1(AppDelegate::addUpdate, this), this, 1.0/60.0, false, “COC”);