NSString 到 NSDate 到“15 分钟”或“1小时”或“1天”
我将如何在 obj c 中执行此操作?
NSString 到 NSDate 为“1 小时”或“1 天”或“15 分钟”
有没有库可以做到这一点?在 Ruby 中,这很容易......必须是 Obj c 中的东西可以做同样的事情吗?
How would I go about doing this in obj c?
NSString to NSDate to "1 hour" or "1day" or "15 min"
Is there a library out that can do this? In Ruby its very easy... has to be something in Obj c that can do the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSDateFormatter 输入/输出 NSDate:
http://开发人员。 apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html
数据格式化指南(“日期格式化程序”一章):
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/DataFormatting/Articles/dfDateFormatting10_4.html#//apple_ref/doc/uid/TP40002369-SW1
Use NSDateFormatter to input/output your NSDate:
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html
Data Formatting Guide (chapter "Date Formatters"):
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/DataFormatting/Articles/dfDateFormatting10_4.html#//apple_ref/doc/uid/TP40002369-SW1