CCMenuItemImage会在按下它后触摸它时调用选择器。
但是,只要触摸按下它就不能让它调用选择器吗?这是为了在菜单中创建更快的效果。
答案 0 :(得分:2)
子类CCMenuItemImage并处理事件
-(void) selected{
// do you thing : for example you could have a target:selector pair of
// properties added in your implementation.
[super selected];
}
我用它来检测长触摸并弹出上下文工具提示窗口(例如)。