Cocos2D CCMenuItem 在其他 CCLayer 上没有响应

发布于 2024-12-05 12:19:50 字数 312 浏览 1 评论 0原文

这是我的问题。我有一个经典的 CCLayer 子类。在 init 方法中,我创建一个 CCMenuItem,并将其添加到我的主层:

CCMenuItemFont *back = [CCMenuItemFont itemFromString:@"back" target:self selector:@selector(back)];
    [back setPosition:CGPointMake(30, 30)];
    [self addChild:back];

我不明白为什么,没有调用“back”方法。

提前致谢

Here is my problem. I got a classic CCLayer subclass. In the init method, I create a CCMenuItem, and add it to my main layer :

CCMenuItemFont *back = [CCMenuItemFont itemFromString:@"back" target:self selector:@selector(back)];
    [back setPosition:CGPointMake(30, 30)];
    [self addChild:back];

I don't understand why, the method 'back' is not called.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

单调的奢华 2024-12-12 12:19:50

您需要将菜单项添加到 CCMenu,而不是直接添加到图层。

CCMenuItemFont *back = [CCMenuItemFont itemFromString:@"back" target:self selector:@selector(back)];
[back setPosition:CGPointMake(30, 30)];

CCMenu *menu = [CCMenu menuWithItems:back,nil];
[menu setPosition:CGPointZero];
[self addChild:menu];

如果这不起作用,您的 back 方法可能需要接受按下菜单按钮时传递的参数,如下所示:

-(void) back:(CCMenuItem*) item;

如果是这种情况,您需要将参数添加到 @selector 调用中:

...selector:@selector(back:)];

You need to add your menu items to a CCMenu, not directly to your layer.

CCMenuItemFont *back = [CCMenuItemFont itemFromString:@"back" target:self selector:@selector(back)];
[back setPosition:CGPointMake(30, 30)];

CCMenu *menu = [CCMenu menuWithItems:back,nil];
[menu setPosition:CGPointZero];
[self addChild:menu];

If that doesn't work, your back method may need to accept the parameter passed when the menu button is pressed, like this:

-(void) back:(CCMenuItem*) item;

If that's the case you'll need to add the parameter to the @selector call:

...selector:@selector(back:)];
哆啦不做梦 2024-12-12 12:19:50

试试这个。

CCMenuItemFont *back = [CCMenuItemFont itemFromString:@"back" target:self selector:@selector(back:)];

并将你的背部方法更改为..

-(void) back: (id) sender {

try this.

CCMenuItemFont *back = [CCMenuItemFont itemFromString:@"back" target:self selector:@selector(back:)];

and change your back method to be..

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