如何在Android cocos2d菜单项选择器中传递数据?
在Iphone中,我能够像这样传递选择器id
CCMenuItemSprite* item =[CCMenuItemSprite itemFromNormalSprite:normalSprite
selectedSprite:selectedSprite target:target selector:@selector(LaunchLevel:)];
来获取所选的menuItem标签
- (void ) LaunchLevel: (id) sender
{
// Do Something
CCMenuItemSprite *temp = (CCMenuItemSprite *)sender;
}
,并且通过我的问题是如何在android中执行类似的代码 ?表示如何传递MenuItem的id
In Iphone i am able to pass selector id like this way
CCMenuItemSprite* item =[CCMenuItemSprite itemFromNormalSprite:normalSprite
selectedSprite:selectedSprite target:target selector:@selector(LaunchLevel:)];
and the selected menuItem tag is obtained by
- (void ) LaunchLevel: (id) sender
{
// Do Something
CCMenuItemSprite *temp = (CCMenuItemSprite *)sender;
}
My question is how to do the similar code in android? Means how to pass the id of the MenuItem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您暂时无法执行此操作。如果您检查代码来源没有任何东西可以用于此目的。
但由于 cocos2d 是开源的,没有什么可以阻止你实现这个功能。
You cannot do this for the moment. If you check the code source there is nothing for this purpose.
But as cocos2d is open source, nothing prevents you to implement this feature.