gpt4 book ai didi

iphone - 在TTTAttributedLabel中更改链接文本大小

转载 作者:行者123 更新时间:2023-12-01 19:12:03 28 4
gpt4 key购买 nike

我正在使用TTTAttributedLabel在标签中显示链接。
现在我只想更改链接的字体大小。任何指导

最佳答案

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;

关于iphone - 在TTTAttributedLabel中更改链接文本大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15949897/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com