我使用PDFView为PDF页面添加注释。然而,注释'背景颜色默认为透明红色。是否可以更改注释背景颜色?
而且我发现调整大小非常小,我是否可以更改调整大小?
非常感谢。我附上了截图。
答案 0 :(得分:0)
得到了答案。更改DrawPage中的代码:
path = [NSBezierPath bezierPathWithRect: bounds];
[path setLineJoinStyle: NSRoundLineJoinStyle];
[[NSColor colorWithDeviceRed: 0.0 green: 0.0 blue: 0.0 alpha: 0.1] set];
//change Here
[path fill];
[[NSColor blackColor] set];