如何在 Xcode 中更改 PDFView 注释背景颜色?
Posted
技术标签:
【中文标题】如何在 Xcode 中更改 PDFView 注释背景颜色?【英文标题】:How to change PDFView annotation background color in Xcode? 【发布时间】:2014-11-29 12:37:20 【问题描述】:我使用 PDFView 向 PDF 页面添加注释。然而,注释的背景颜色默认是透明的红色。是否可以更改注释背景颜色?
而且我发现调整点非常小,我也可以改变调整点大小吗?
非常感谢。我附上了截图。
【问题讨论】:
【参考方案1】:得到了答案。更改 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];
【讨论】:
以上是关于如何在 Xcode 中更改 PDFView 注释背景颜色?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 PDFView 中移动 PDFPage 上的 PDFAnnotation?