【已解决】怎么一直找不到addWidget啊啊啊啊

我已经写了#include “cocos-ext.h”,#include “CocosGUI.h”,USING_NS_CC;USING_NS_CC_EXT;怎么一直找不到addWidget啊啊啊啊

有大哥回答说layer的是UIlayer,CCLayer是没有这个方法的。是我犯晕了。

请按照如下方式调用:
UILayer *uiLayer = UILayer::create();
uiLayer->scheduleUpdate();
this->addChild(uiLayer);
UIWidget *widget = CCUIHELPER->createWidgetFromJsonFile(“xxxxxxxx.json”);
uiLayer->addWidget(widget);

备注:this 为 CCLayer 对象