更改TTTAttributedLabel中的链接文本大小

时间:2013-04-11 13:20:47

标签: iphone ios objective-c

我使用TTTAttributedLabel来显示标签中的链接。 现在我想改变链接的字体大小。任何指南

1 个答案:

答案 0 :(得分:3)

TTTAttributedLabel有一个属性linkAttributes,它将应用于每个链接:

TTTAttributedLabel *someLabel;

NSMutableDictionary *baseAttributes = [NSMutableDictionary dictionary];
UIFont *baseFont = [UIFont systemFontOfSize:14.0];
CTFontRef baseFontRef = CTFontCreateWithName((__bridge CFStringRef)baseFont.fontName, baseFont.pointSize, NULL);

baseAttributes[(__bridge NSString *)kCTFontAttributeName] = (__bridge id)baseFontRef;
CFRelease(baseFontRef);

someLabel.linkAttributes = baseAttributes;