NSString 到 NSDate 转换
我有一根绳子。
NSString *str=@"January-06-2012";
我如何像这样转换上面的 NSString 。
@"2012-01-06 00:00:00 +0000";
谢谢
I Have a String.
NSString *str=@"January-06-2012";
How would I convert the above NSString like this.
@"2012-01-06 00:00:00 +0000";
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSDateFormatter 类.. 您将需要其中两个 .. 一个使用 [dateformatter dateFromString] 将 NSString* str 转换为日期,然后另一个使用 [dateformatter1 stringFromDate]
http://developer.apple. com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html
Use NSDateFormatter class .. YOu would need two of them .. one to convert your NSString* str to a date using [dateformatter dateFromString] and then another to convert your newly created date object to the differently formatted string using [dateformatter1 stringFromDate]
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html