NSD日期问题
如何创建 2005 年 8 月 1 日的 NSDate?在网上找到了NSDateComponent,但似乎太复杂了。
How do I create a NSDate of August 1, 2005? Found NSDateComponent on the internet, but seems too complicated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
另一种可能性是使用 <代码>NSDateComponents和
NSCalendar
。例如:Another possibility is to use
NSDateComponents
andNSCalendar
. For instance:怎么样:
What about:
这取决于您的时区,但在 GMT 中,2005 年 8 月 1 日午夜过后 1 分钟是 UNIX 时间戳 1122854401。所以您可以写...
It rather depends on your timezone, but in GMT, the 1st of August 2005 at 1 minute past midnight was the UNIX timestamp 1122854401. So you can write...
Cocoa 日期和时间编程指南简介
Introduction to Date and Time Programming Guide for Cocoa