如何在Android cocos2d菜单项选择器中传递数据?

发布于 2024-11-26 16:45:54 字数 436 浏览 2 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

源来凯始玺欢你 2024-12-03 16:45:54

您暂时无法执行此操作。如果您检查代码来源没有任何东西可以用于此目的。
但由于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文