NSDatePicker - 更改值时获取值

发布于 2024-08-13 22:53:05 字数 38 浏览 4 评论 0原文

当 NSDatePicker 的值发生更改时,我如何收到通知?

How would I get notified of a value of a NSDatePicker, when it's changed?

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

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

发布评论

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

评论(3

痴骨ら 2024-08-20 22:53:05

我只在 iPhone 上使用 UIDatePicker 完成了此操作,但在 Mac 上也类似,您注册为代理人并接收消息。请参阅 苹果文档在这里

我应该澄清一下,这告诉您何时更改,您仍然需要调用 -dateValue 来获取日期。

I've only done it on the iPhone with UIDatePicker but it is similar on the Mac, you register as a delegate and receive messages. See Apple's Docs here.

I should clarify, this tells you when it changed, you still need to call -dateValue to get the date.

若言繁花未落 2024-08-20 22:53:05

与任何其他控件相同。选项有:

  • 目标/操作
  • 绑定
  • 观察通知
  • 委托

The same you would any other control. Options are:

  • Target/Action
  • Binding
  • Observe notification
  • Delegate
无尽的现实 2024-08-20 22:53:05

您可以将选取器的 value 绑定绑定到控制器的属性或模型对象的属性(通过控制器)。

You can bind the picker's value binding to a property of your controller, or a property of a model object (through a controller).

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