2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
class CCLabelTTF : public CCSprite
|
|
|
|
{
|
|
|
|
void setString(const char *label);
|
|
|
|
const char* getString(void);
|
|
|
|
|
2012-06-15 11:46:51 +08:00
|
|
|
static CCLabelTTF * create(const char *label, CCSize dimensions, CCTextAlignment hAlignment,CCVerticalTextAlignment vAlignment, const char *fontName, float fontSize);
|
|
|
|
static CCLabelTTF * create(const char *label, CCSize dimensions, CCTextAlignment alignment, const char *fontName, float fontSize);
|
|
|
|
static CCLabelTTF * create(const char *label, const char *fontName, float fontSize);
|
2012-02-02 14:26:38 +08:00
|
|
|
};
|