将字符串转换为 NSDate
我有一个“DateTimeArray”,该数组包含
DateTimeArray[index 0] = 20.05.2011 12:12:50
DateTimeArray[index 1]= 20.05.2011 12:13:20
DateTimeArray[index 2]= 20.05.2011 12:20:10
字符串中的所有值,我想将此字符串转换为 NSDate 并且只想访问时间而不是日期
然后这次值将存储在数组中,这个新数组将用于绘制折线图
我希望有人知道这个问题
非常感谢
i have a "DateTimeArray" this array contain
DateTimeArray[index 0] = 20.05.2011 12:12:50
DateTimeArray[index 1]= 20.05.2011 12:13:20
DateTimeArray[index 2]= 20.05.2011 12:20:10
all the value are in string,and i want to convert this string into NSDate and only want to access time not date
and then this time values will be stored in array and this newly array will be used for drawing line chart
i hope some one know this issue
thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
试试这个
Try this
最佳和更简洁的方法:
然后,为了仅访问几小时而不是几天,您应该选择每个
NSDate*
实例所需的组件:Best and cleaner approach:
Then to just access hours, and not days, you should select the required components of each
NSDate*
instance:这是完整的代码集..希望它有所帮助..
快乐 iCoding...
Heres the complete set of code.. Hope it helps..
Happy iCoding...
代码如下,
Code as follows,