如何将 NSDateFormatter 与 NSPopUpButton 一起使用

发布于 2024-08-14 17:38:53 字数 134 浏览 9 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

风月客 2024-08-21 17:38:53

好的,Twitter 上的一些人建议向我的模型添加一个 formattedDate 方法。我从一开始就知道我可以做到这一点,但希望有一些仅限 IB 的解决方案。我不认为有,所以回答我自己的问题: NSDateFormatter 不(似乎)与 NSPopUpButton 一起使用。

我的 formattedDate 方法如下所示:

- (NSString *)formattedDate {
  return [NSDateFormatter localizedStringFromDate:self.date dateStyle:NSDateFormatterLongStyle timeStyle:NSDateFormatterNoStyle];
}

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:

- (NSString *)formattedDate {
  return [NSDateFormatter localizedStringFromDate:self.date dateStyle:NSDateFormatterLongStyle timeStyle:NSDateFormatterNoStyle];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文