Cocoa 绑定,延迟编辑提交,直到用户单击“确定”;

发布于 2024-10-02 22:12:13 字数 219 浏览 1 评论 0原文

我有一个包含多个字段的编辑窗口,所有字段都绑定到 NSObjectController 的“内容”控制器键,而该键又绑定到 NSArrayController 的“选择”控制器键。我还有一个 NSTableView,绑定到同一个 NSArrayController 及其选择。

在我的编辑窗口中,一旦用户离开文本字段,该值就会传播回 NSTableView。如何停止提交值,直到用户在编辑窗口中单击“确定”?

I have an editing window with several fields, all bound to the 'content' controller key of an NSObjectController, which is in turn bound to the 'selection' controller key of an NSArrayController. I also have an NSTableView, bound to the same NSArrayController, along with its selection.

In my editing window, as soon as the user leaves a textfield, the value is propagated back to the NSTableView. How do I stop the value being committed until the user clicks 'OK' in the editing window?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

尬尬 2024-10-09 22:12:13

您可以使用临时 NSMutableDictionary 对象来存储编辑窗口中的值,然后当用户单击“确定”时使用字典的值实例化一个对象:即:

NSManagedObject* obj = [NSEntityDescription insertNewObjectForEntityForName:@"MyObject"                                             
                        inManagedObjectContext: self.managedObjectContext];

[obj setValuesForKeysWithDictionary:tempObject];

You could use a temporary NSMutableDictionary object to store the values in the editing window, and then when the user clicks 'OK' instantiate an object using the dictionary's values: i.e.:

NSManagedObject* obj = [NSEntityDescription insertNewObjectForEntityForName:@"MyObject"                                             
                        inManagedObjectContext: self.managedObjectContext];

[obj setValuesForKeysWithDictionary:tempObject];
靖瑶 2024-10-09 22:12:13

我建议在编辑窗口中使用瞬态值。然后,当用户单击“确定”时,实际分配该值。

I would suggest using a transient value in the editing window. then, when the user clicks 'OK' actually assign the value.

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