实现 Cocoa 绑定模式

发布于 2024-11-02 04:22:22 字数 211 浏览 2 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

笔芯 2024-11-09 04:22:22

您指的不是绑定,或者如果您是指绑定,那么您就误解了绑定的工作原理及其用途。

有关解释,请阅读这篇文章 - 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.

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