0

我正在尝试使用以下代码对 CCMenuItem 进行子类化:

通用按钮.h

#import <Foundation/Foundation.h>
#import "cocos2d.h"

@interface GenericButton : CCMenuItemSprite {

}
+(id) itemwithTitle:(NSString*)title withBGColor: (ccColor3B) bgColor andFGColor:(ccColor3B)fgColor;
@end

通用按钮.m

#import "GenericButton.h"
#import "HelpfulClasses.h"

@implementation GenericButton

+(id) itemwithTitle:(NSString*)title withBGColor: (ccColor3B) bgColor andFGColor:(ccColor3B)fgColor{

CCSprite*genericButtonBG = [CCSprite spriteWithSpriteFrameName:@"genericButtonBG.png"];
genericButtonBG.color=bgColor;

CCSprite*genericButtonBGPressed = [CCSprite spriteWithSpriteFrameName:@"genericButtonBGPressed.png"];
genericButtonBGPressed.color=bgColor;

CCMenuItemSprite*button = [CCMenuItemSprite itemWithNormalSprite:genericButtonBG selectedSprite:genericButtonBGPressed];

CCSprite*fgButton = [CCSprite spriteWithSpriteFrameName:@"genericButton.png"];
fgButton.color=fgColor;
[button addNodeInMiddleOfParent:fgButton];

CCLabelBMFont *buttonTitle = [CCLabelBMFont labelWithString:title fntFile:@"font.fnt"];
if ([title length]>7) {
buttonTitle.scale=0.85;
}
buttonTitle.color=ccYELLOW;
[fgButton addNodeInMiddleOfParent:buttonTitle];

return button;

}
// on "dealloc" you need to release all your retained objects
- (void) dealloc
{
// in case you have something to dealloc, do it in this method
// in this particular example nothing needs to be released.
// cocos2d will automatically release all the children (Label)

// don't forget to call "super dealloc"
[super dealloc];
}

@end

但是每当我使用 GenericButton*button = [GenericButton item....] 时,在 CCScene 中,有很多“removeChildByTag: child not found!” 显示在控制台上。难道我做错了什么?干杯

4

1 回答 1

0

两个月后,您可能已经自己弄清楚了。这个网站没有办法PM某人吗?很抱歉,如果我复活旧线程。

您没有包含此类的所有代码。但是,我可以指出我看到的一些问题,并且可能是您问题的根源。在您的类方法中,您正在创建并返回一个指向“CCMenuItemSprite”的指针,称为“按钮”。这应该是指向您的类“GenericButton”的指针。

于 2013-02-01T03:09:58.713 回答