我尝试将NSBaselineOffsetAttributeName
与TTTAttributedLabel
一起使用,但似乎没有效果。例如,这似乎没有做任何事情:
[label setText:text afterInheritingLabelAttributesAndConfiguringWithBlock:^ NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {
[mutableAttributedString addAttribute:NSBaselineOffsetAttributeName value:@5.0 range:NSMakeRange(0, [text length] - 5)];
return mutableAttributedString;
}];
如果不支持此属性,是否有其他方法可以调整标签基线?