CATextLayer и отслеживание / интервал между символами - PullRequest
8 голосов
/ 04 сентября 2011

Я использую CATextLayer, чтобы использовать пользовательский шрифт в iOS, я знаю, что есть простой способ использовать пользовательский шрифт с Fonts provided by application, но это другой шрифт. Мне было интересно, есть ли способ изменить расстояние между персонажами? Я не нашел никакой собственности, чтобы сделать это!

отредактировано:

- (void)viewWillAppear:(BOOL)animated {
    CTFontRef font = [self newCustomFontWithName:@"yeki" 
                                          ofType:@"ttf" 
                                      attributes:[NSDictionary dictionaryWithObject:[NSNumber numberWithFloat:16.f] 
                                                                             forKey:(NSString *)kCTFontSizeAttribute]];


    CGRect screenBounds = [[UIScreen mainScreen] bounds];

    normalTextLayer_ = [[CATextLayer alloc] init];
    normalTextLayer_.font = font;
    normalTextLayer_.string = str;
    normalTextLayer_.wrapped = YES;
    normalTextLayer_.foregroundColor = [[UIColor purpleColor] CGColor];
    normalTextLayer_.fontSize = 50.f;
    normalTextLayer_.alignmentMode =  kCAAlignmentRight;

    normalTextLayer_.frame = CGRectMake(0.f,100.f, screenBounds.size.width, screenBounds.size.height /1.f);
    [self.view.layer addSublayer:normalTextLayer_];
    CFRelease(font);
}

1 Ответ

12 голосов
/ 04 сентября 2011

Вы можете присвоить слою NSAttributedString (или NSMutableAttributedString) вместо простого NSString и использовать атрибут kCTKernAttributeName (см. Базовая ссылка на строковые атрибуты текста ) для настройкикернинг.

Пример:

CTFontRef font = CTFontCreateWithName(CFSTR("Helvetica"), 30, NULL);
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:
                            (id)font, kCTFontAttributeName, 
                            [NSNumber numberWithFloat:15.0], kCTKernAttributeName, 
                            (id)[[UIColor greenColor] CGColor], kCTForegroundColorAttributeName, nil];
NSAttributedString *attributedString = [[[NSAttributedString alloc] initWithString:@"Hello World" attributes:attributes] autorelease];
CFRelease(font);
myTextLayer.string = attributedString;

Это даст вам зеленый текст в Helvetica 30 с увеличенным межсимвольным интервалом.

...