0

我已经使用 PDFView 向 PDF 页面添加注释。然而,注释的背景颜色默认是透明的红色。是否可以更改注释背景颜色?

而且我发现调整大小的点非常小,我也可以改变调整大小的点大小吗?

非常感谢。我附上了截图。

红色背景

4

1 回答 1

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];
于 2014-11-30T11:19:37.433 回答