从整数组装日期对象?
给定三个整数,分别代表日、月和年,什么代码会将这些整数组装成日期对象?
Given three integers, representing a day, month and year, what code would assemble those integers into a date object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看
NSDateComponents
:You should look at
NSDateComponents
:NSDateFormatter 使用用于将日期字符串解析为日期的 Unicode 标准。因此,将整数格式化为日期字符串,然后使用 NSDateFormatter 来解析它:
只要使用 Unicode 标准(上面链接)并将整数转换为相同的格式(显然)。
NSDateFormatter uses the Unicode Standard for parsing date strings into dates. So, format your integers into a date string and then use and NSDateFormatter to parse it:
You can set the format string to whatever format floats your boat, as long as you use the Unicode Standard (linked above) and you convert your integers into the same format (obviously).