PDFKit iOS 11:如何更改Ink注释的线宽?

时间:2018-02-22 23:16:56

标签: ios swift annotations pdfkit

我正在使用PDFKit在PDF文件上绘制一些墨迹注释。但我无法改变线条的宽度。我以为这样做:

let path = UIBezierPath()
path.lineWidth = 20 // important line
path.move(to: originPoint)
path.addLine(...)
annotation.add(path)

就足够了,因为在Core Graphics中绘制时修改Bezier路径的lineWidth是有效的。但是在这里,它没有改变任何东西,那么如何改变注释的线宽?

1 个答案:

答案 0 :(得分:5)

使用border的{​​{1}}属性更改添加到其中的PDFAnnotation的厚度。

UIBezierPath