我对 CATextlayer 有疑问。我为 CATextlayer 设置了 Wrapped == YES 并为此自动设置了多行。但是行间距很小,看起来很糟糕。有没有办法为 CATextlayer 设置行距?谢谢。
4 回答
我认为CATextLayer
仅适用于轻量级用途。您可以将其string
属性设置为 anNSAttributedString
以更改一些属性,如字体和大小,但许多其他属性会被忽略,包括行高和间距。
为了更好地控制图层中文本的呈现方式,您可以使用常规CALayer
和 NSAttributedString
' 绘图方法;例如:
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx {
[NSGraphicsContext saveGraphicsState];
[NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:ctx flipped:YES]];
[self.someAttributedString drawInRect:layer.bounds];
[NSGraphicsContext restoreGraphicsState];
}
像@spinacher 一样,我注意到它CATextLayer
忽略了行距等段落样式。我通过继承 CALayer 并更直接地绘制属性字符串来解决这个问题。大部分代码都是从这篇文章中复制过来的
class CAAttributedTextLayer: CALayer {
public var attrString = NSAttributedString(string: "")
override func draw(in ctx: CGContext) {
// Flip the coordinate system
ctx.textMatrix = .identity
ctx.translateBy(x: 0, y: bounds.size.height)
ctx.scaleBy(x: 1.0, y: -1.0)
let path = CGMutablePath()
path.addRect(bounds)
let framesetter = CTFramesetterCreateWithAttributedString(attrString as CFAttributedString)
let frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, attrString.length), path, nil)
CTFrameDraw(frame, ctx)
}
}
CATextLayer
lineheight 取决于您的字体本机高度,1 unit
通常用名为“ Geviert ”的印刷单位类型表示。
如果您能够编辑字体 - 当然您也可以设置 lineheight。因为当 Quartz 解释/渲染你的字体时,使用一个符号的最大单位大小的单位大小。
对不起德语的屏幕截图,字体编辑设置为只有 6 个像素高度和两个像素的行距。即使在字体创建软件中,读取行高也不是很明显,如您所见。没有任何地方将 2 个像素作为线空间给出。相反,这里给出了单位大小的 Geviert。
所以是的,CATextLayer没有其他方法可以以本机方式打印其他行高。您将始终必须通过读取"\n"
NSString 并为下一行重新分配另一个 CATextLayer 或与其他类一起在屏幕上打印文本来使用解决方法,例如来自torof的示例,其中 aCAAttributedTextLayer
可以表达NSAttributedString
s
Quartz Rendering 的 Lineheight 是一个取决于字体的相对大小。有些字体需要更多的行空间,因为它们在圆圈和下划线图形中很重。如果不存在此相对行高,则必须使用标准在每个文本打印上指定行高1 unit * Geviert size + size below any sign
(屏幕截图“Unterlänge”)
当您可以编辑字体文件并将提到的Geviert
大小设置为您希望的值时,CATextLayer
它将始终以完美的行高呈现。当您为 LCD 或其他低像素显示器创建图像缓冲区时,这非常方便。
您可以参考以下教程: