有没有办法让 CGPath 增长 x 像素?
我正在构建一个自定义 UIView,它在 drawRect: 方法中绘制自己的内容。我想用一种颜色描边 CGPath,然后将此选区增大 1px 并用另一种颜色描边。有人找到了一种很容易做到这一点的方法吗?
I'm building a custom UIView, which draws its own content in a drawRect: Method. I want to stroke a CGPath with a color, and then grow this selection 1px and stroke with another color. Has somebody worked out a method to do this quite easily?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试对图形上下文应用适当的缩放变换。
You could try applying an appropriate scaling transformation to your graphics context.