iphone sdk:我有一个 Quartz 绘图问题
我有一个视图(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将此视图的 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.