我已经为我的图层添加了一个精灵,对于该精灵,我添加了CCTableview,在cellAtIndex方法中,我创建了菜单项并添加到表视图单元格。
现在我希望获得与我的图层相关的菜单项位置。怎么做?
我试过这个
CCPoint pos=item->getPosition(); // MENU ITEM
pos=item->getParent()->convertToNodeSpace(pos);// CONVERTING TO TABLEVIEW CELL NODE SPACE
CCLog("item.x=%f",pos.y);
pos=this->stickerTableView->convertToNodeSpace(pos);
CCLog("item.x=%f",pos.y);