我已经使用我命名为 Label 的类实现了 CCLabelProtocol 和 CCRGBAProtocol:
#import <cocos2d.h>
@interface Label : CCNode <CCLabelProtocol, CCRGBAProtocol>
@property (nonatomic, copy, readwrite) NSString* string;
@property (nonatomic, readwrite) ccColor3B color;
@property (nonatomic, readwrite) GLubyte opacity;
- (id) initWithString: (NSString*) aString;
@end
因为它很方便,所以我还做了一个 initWithString 方法:
#import "Label.h"
@implementation Label
@synthesize string,opacity,color;
- (id) initWithString: (NSString*) aString
{
if(self=[super init])
{
string= aString;
color.r=255;
color.g=0;
color.b=0;
opacity= 10;
}
return self;
}
- (ccColor3B) color
{
return color;
}
@end
然后在 HelloWorldLayer 的 init 方法中我这样做:
Label* label= [[Label alloc]initWithString: @"Start"];
CCMenuItemLabel* item= [CCMenuItemLabel itemWithLabel: label block:^(id sender)
{
NSLog(@"Label Clicked");
}];
CCMenu* menu= [CCMenu menuWithItems: item, nil];
[self addChild: menu];
我使用的是普通的 cocos2d 模板,所以这是在 CCLayer 类中。
屏幕是黑色的,我没有得到我想要的标签。