实现 Cocoa 绑定模式
我有一个 MyImage 类,它有一个 NSAffineTransform 成员转换。
在我的 AppDelegate 中有一个 NSMutableArray 图像。
我有一个从 AppDelegate.images 绘制图像的 MyView。因此它必须跟踪 AppDelegate.images 中的更改并重新绘制内容。
通过绑定实现此目的的最佳方法是什么?
I have a class MyImage, that have a NSAffineTransform member transform.
In my AppDelegate a have a NSMutableArray of images.
I have a MyView that draw the images from AppDelegate.images. So it must track changes in AppDelegate.images and redraw the content.
What is the best way to implement this though bindings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您指的不是绑定,或者如果您是指绑定,那么您就误解了绑定的工作原理及其用途。
有关解释,请阅读这篇文章 - Manual Binding in Cocoa
你需要使用 < strong>KVO 观察图像阵列。您需要确保以符合 KVC 的方式在阵列中添加和删除图像。
You don't mean bindings, or if you do you have misunderstood how bindings work and what they are for.
For an explanation read this post - Manual binding in Cocoa
You need to use KVO to observe the array of images. You need to make sure you add and remove images from the array in a KVC compliant way.