如何将 NSDateFormatter 与 NSPopUpButton 一起使用
我有一个 NSPopUpButton 的内容绑定到“会议”实体的数组控制器,它的内容值绑定到同一数组控制器,但绑定到“日期”模型键路径。一切正常。但我想用 NSDateFormatter 来格式化日期的显示方式,但我无法让它工作。有什么提示吗?有可能吗?
I have an NSPopUpButton's content bound to an Array Controller of "Meeting" entities and it's content value bound to the same array controller, but to the "date" model key path. Everything works fine. But I'd like to format the way the date is displayed with an NSDateFormatter and I can't get it to work. Any hints? Is it even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,Twitter 上的一些人建议向我的模型添加一个 formattedDate 方法。我从一开始就知道我可以做到这一点,但希望有一些仅限 IB 的解决方案。我不认为有,所以回答我自己的问题: NSDateFormatter 不(似乎)与 NSPopUpButton 一起使用。
我的 formattedDate 方法如下所示:
OK, some guys on Twitter suggested adding a formattedDate method to my model. I knew from the get go that I could do that but was hoping that there's some IB-only solution. I don't think there is, so to answer my own question: NSDateFormatter doesn't (seem to) work with NSPopUpButton.
My formattedDate method looks like this: