NSDatePicker - 更改值时获取值
当 NSDatePicker 的值发生更改时,我如何收到通知?
How would I get notified of a value of a NSDatePicker, when it's changed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当 NSDatePicker 的值发生更改时,我如何收到通知?
How would I get notified of a value of a NSDatePicker, when it's changed?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我只在 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.与任何其他控件相同。选项有:
The same you would any other control. Options are:
您可以将选取器的
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).