为绘图应用程序制作图层结构
关于我的问题一个较早的问题,我尝试过但失败了创建一个类,其中包含包含 CALayerRef 的 NSMuttableArray
成员变量。有人可以指导我如何做到这一点吗?我想做的基本上是创建 CALayerRef 或 CGLayerRef 或其他什么,将它们推入我的 Layers 变量中,然后,当我需要时它们,获取,使用它们的上下文,最后绘制/隐藏/显示/删除它们。
我向你们求助,伙计们,因为显然,网上几乎没有关于在高级水平上使用图层和 Quartz 的信息。每个人都可以立即使用这些层,不需要管理,也不需要成员变量。
谢谢。
In relation to question an eralier question of mine, I have tried and failed to create a class with a NSMuttableArray
member variable holding CALayerRef
s. Can someone please guide me on how to do that. What I want to do is basically create CALayerRef
s or CGLayerRef
s or whatever, push them into my layers
variable, and then, when I need them, fetch, use their context and finally draw/hide/show/delete them.
I turn to you, guys, because apparently, there is few to none information on the net on working with layers and Quartz on an advanced level. Everybody uses the layers right away, no management needed, no member variables.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我在几分钟内编写的一些自定义视图的工作代码,希望对您有所帮助。它创建 10 个绿色层,并每秒将它们动画化到不同的位置。
下面是 CALayer 委托绘制一条线的一些代码:
Here's some working code for custom view I wrote in few minutes, hope it helps. It creates 10 green layers, and animates them each second to different locations.
Here's some code for CALayer's delegate that draws a line: