cc.NotificationCenter:sharedNotificationCenter():postNotification

cc.NotificationCenter:sharedNotificationCenter():postNotification(GAME_EVENT.EVENT_GAME_SKILL_RELEASE,xxx)//这个xxx怎么传才是对的啊,我想在这里传递一个参数过去
cc.NotificationCenter:sharedNotificationCenter():postNotification(GAME_EVENT.EVENT_GAME_SKILL_RELEASE,{id=1})报下面错误
Cocos2d: LUA ERROR: :423: error in function ‘postNotification’.
argument #3 is ‘table’; ‘CCObject’ expected.

//该怎么使用呢?

需要传一个CCObject类,比如一个精灵、一个节点等等

只能这样了,这里面CCObject没有直接绑定过来,只能把一个节点当做数据来传递了,传递之前retain,用完之后 就release.