CCLabelTTF で .otf フォントを使用しようとしています...
うまくいきません。上記のフォントは、ネイティブの UILabel でうまく機能します。回避策はありますか?UILabel を CCSprite 風にレンダリングしますか? OTF を TTF に変換するのは面倒です。
- 編集。私はこれを書きました。うまくいくと思います。それがどうなるか見ていきます。
- 編集 2. color でラベルを作成すると
UIColor.whiteColor
、 color で色を設定しmylabel.color = ccc3(0, 0, 0);
て黒またはその他の色にすることができます。CCTintTo
次に、などを使用してテキストの色を自由に着色できます。
Spriteuifont.h:
#import "CCSprite.h"
@interface Spriteuifont : CCSprite
+(Spriteuifont*)spriteuifontWithText:(NSString*)text font:(UIFont*)font color:(UIColor*)color;
@property (nonatomic, retain) NSString* string;
@end
Spriteuifont.m:
#import "Spriteuifont.h"
#import "UIView+additions.h"
@interface Spriteuifont ()
@property (nonatomic, retain) NSString* _string;
@property (nonatomic, retain) UIFont* _font;
@property (nonatomic, retain) UIColor* _color;
@end
@implementation Spriteuifont
@synthesize _string, _font, _color; // retain
-(void)dealloc {
self._string = nil;
self._font = nil;
self._color = nil;
[super dealloc];
}
+(Spriteuifont*)spriteuifontWithText:(NSString*)text font:(UIFont*)font color:(UIColor*)color {
Spriteuifont* s = [[[self alloc] initWithText:text font:font color:color] autorelease];
return s;
}
-(id)initWithText:(NSString*)text font:(UIFont*)font color:(UIColor*)color {
self = [super init];
if (self) {
self._font = font;
self._color = color;
self.string = text;
}
return self;
}
-(void)refresh {
const CGSize SIZE = [self._string sizeWithFont:self._font];
UILabel* labelTestfont = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, SIZE.width, SIZE.height)] autorelease];
labelTestfont.font = self._font;
labelTestfont.backgroundColor = UIColor.clearColor;
labelTestfont.opaque = NO;
labelTestfont.text = self._string;
labelTestfont.textColor = self._color;
UIImage* img = [labelTestfont image];
// GL_ONE or GL_ONE_MINUS_SRC_ALPHA ?
CCTexture2D* aa = [[[CCTexture2D alloc] initWithCGImage:img.CGImage resolutionType:GL_ONE] autorelease];
[self setTexture:aa];
[self setTextureRect:labelTestfont.frame];
}
-(void)setString:(NSString *)string {
self._string = string;
[self refresh];
}
-(NSString*)string {
return self._string;
}
@end
使用法:
Spriteuifont* label = [Spriteuifont spriteuifontWithText:@"0" font:[UIFont fontWithName:@"myfontwhatever" size:16] color:UIColor.blackColor];
ところで、UIView カテゴリ .m ファイルには次のものが含まれています。
#import <QuartzCore/QuartzCore.h>
@implementation UIView (additions)
-(UIImage*)image {
UIGraphicsBeginImageContextWithOptions(self.bounds.size, self.opaque, 0.0);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage* img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
@end