我希望有一些文字与自定义行间距,所以我写了一个属性字符串CTParagraphStyleAttributte
并将它传递给我的CATextLayer
:
UIFont *font = [UIFont systemFontOfSize:20];
CTFontRef ctFont = CTFontCreateWithName((CFStringRef)font.fontName,
font.pointSize, NULL);
CGColorRef cgColor = [UIColor whiteColor].CGColor;
CGFloat leading = 25.0;
CTTextAlignment alignment = kCTRightTextAlignment; // just for test purposes
const CTParagraphStyleSetting styleSettings[] = {
{kCTParagraphStyleSpecifierLineSpacingAdjustment, sizeof(CGFloat), &leading},
{kCTParagraphStyleSpecifierAlignment, sizeof(CTTextAlignment), &alignment}
};
CTParagraphStyleRef paragraphStyle = CTParagraphStyleCreate(styleSettings, 2));
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:
(id)ctFont, (id)kCTFontAttributeName,
(id)cgColor, (id)kCTForegroundColorAttributeName,
(id)paragraphStyle, (id)kCTParagraphStyleAttributeName,
nil];
CFRelease(ctFont);
CFRelease(paragraphStyle);
NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc]
initWithString:string
attributes:attributes];
_textLayer.string = attrStr;
[attrStr release];
但行高度没有改变。 我想我在这里失去了一些东西,但我不知道是什么。
我试着kCTParagraphStyleSpecifierLineSpacingAdjustment
和kCTParagraphStyleSpecifierLineSpacing
,但它们中的似乎不工作(?)。 我想也设置使用对齐kCTParagraphStyleSpecifierAlignment
(我知道CATextLayer
有一个属性),只是为了测试kCTParagraphStyleAttributeName
确实工作,它没有。
我注意到,即使我通过一些疯狂的值(例如: CTParagraphStyleCreate(styleSettings, -555);
)这使我问自己:是否CATextLayer
支持段落属性? 如果是这样,我缺少什么吗?