iphone sdk:我有一个 Quartz 绘图问题

发布于 2024-08-08 15:45:36 字数 115 浏览 4 评论 0原文

我有一个视图(MKMapView),在它上面我有一个透明的视图,我可以在上面绘制不同的东西。现在我想为用户提供擦除内容的选项,以便在擦除的位置看到“背景视图”(mapView)。你认为这可能吗?

谢谢

I have a view (MKMapView) and on it I've a transparent view on which I draw different things. Now I would like to give the user the option to erase things so that the "background view" (the mapView) will be seen in the erased places. Do you think it's possible?

Thanks

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

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

发布评论

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

评论(1

2024-08-15 15:45:36

您只需将此视图的 alpha 设置为 0.0f 即可。而如果必须擦除,可以调用[self setNeedsToDisplay]。这将重新绘制您的石英元素。在那里你可以添加一些标志,这将允许你仅在需要时才绘制。

You can just set alpha of this view to 0.0f. And if you have to erase, you can call [self setNeedsToDisplay]. This will redraw your quartz elements. There you can add some flag, that will allow you to draw smth only when it needs.

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