3.3里的触摸机制改了么?

我把3.2的工程迁到3.3,结果menu点击都没效果了……

auto testLable = Label::createWithSystemFont("test", "Arial", 24);
auto testItem = MenuItemLabel::create(testLable, CC_CALLBACK_1(GameLayer::menuCallBack, this));
testItem->setPosition(Vec2(visibleSize.width / 2, visibleSize.height / 2));

auto testMenu = Menu::create(testItem, NULL);
addChild(testMenu);


```

上面这个写法不对么?要改成什么样?

喵的,好像是我笔记本有问题,在台式机上是正常的,编到手机上也正常,只是在笔记本上点击不了……