NSTableView 列中 NSImageView 上的可可绑定不会自动更新
在我的可可应用程序中,有一个 NSTableView(10.7 lion view based tableview)仅包含一列,其中的单元格是自定义 NSTableCellView,其中有多个视图,其中之一是 NSImageView。
我的数据模型有一个整数状态变量,我使用 cocoa 绑定和 NSValueTransformer 为该 NSImageView 提供不同的 NSImage。
问题是,图像不会自动更新。状态更改后,图像仅反映重新加载列表后的更改。
感谢您的帮助:)
In my cocoa app there is a NSTableView(10.7 lion view based tableview) only contains one column, the cell in it is a custom NSTableCellView, in it there are several views and one of them is a NSImageView.
My data model has an integer status variable, I use cocoa binding and a NSValueTransformer to give different NSImage to this NSImageView.
The problem is, the image is not updated automatically. After the status is changed, the image only reflects the change after reload the list.
Thanks for any help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我解决了我自己的问题。
我为模型的“状态”整数属性添加了观察者。当这个状态改变时,实际的表格单元格的图标(NSImageView)已经根据可可绑定而改变,但没有更新。然后在观察回调方法中,只需添加
然后,一旦状态发生变化,图像就会更新。
Finally I solved my own question.
I added observer for model's "status" integer property. When this status changed, the actual table cell's icon (NSImageView) has changed according to the cocoa binding but not updated. Then in the observe callback method, just add
Then the image get updated as soon as status get changed.