如何擦除用 NSBezierPath 绘制的内容?

发布于 2024-12-29 07:56:02 字数 150 浏览 0 评论 0原文

我刚刚使用 NSBezierPath 创建了一条路径,并执行了 [path fill] 将其绘制到视图上。我的问题是如何删除我所绘制的内容?

一种可能的解决方案是再次使用[路径填充]和背景颜色,但如果有背景图像而不是简单的背景颜色,则这将不起作用。那么有人有什么想法吗?

I have just created a path using NSBezierPath and did [path fill] to draw it onto the view. My question is how do I remove what I have drawn?

One possible solution is to use [path fill] again with the background color but this will not work if there is a background image instead of a simple background color. So anyone has any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

给我一枪 2025-01-05 07:56:02

只需从路径数组中删除路径并再次调用drawRect即可。顺便说一句,我知道你在哪里存储路径、可变数组还是字典?

Just remove the path from path array and call the drawRect again. btw mai know in which you are storing the paths, mutable array or dictionary?

給妳壹絲溫柔 2025-01-05 07:56:02

设置 CALayer 路径时会显示您创建的路径

view.layer.path = path.CGPath;

清除该路径

view.layer.path = nil;

The path you created is displayed when you set a CALayer path

view.layer.path = path.CGPath;

To clear that path

view.layer.path = nil;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文