Quartz2D 和渐变线
如何用quartz2d绘制渐变线?
how can i draw gradient line with quartz2d?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何用quartz2d绘制渐变线?
how can i draw gradient line with quartz2d?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
CGContextDrawLinearGradient
绘制渐变。使用CGContextClipToRect
(或相关的剪切函数)剪切到要填充渐变的区域。不支持用渐变描边或填充路径,而是剪辑到要填充的区域。
CGContextDrawLinearGradient
draws gradients. UseCGContextClipToRect
(or related clipping functions) to clip to the region you want to fill with a gradient.There's no support for stroking or filling a path with a gradient, you instead clip to the region you want to fill.
我在
drawRect:
中使用了它,效果非常好:I used this inside
drawRect:
and worked like a charm: