ios – NSString到NSDate for yyyy-MM-dd’T’HH:mm:ss.SSS 05:30格式

前端之家收集整理的这篇文章主要介绍了ios – NSString到NSDate for yyyy-MM-dd’T’HH:mm:ss.SSS 05:30格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到的日期字符串是2014-01-08T21:21:22.737 05:30的格式.我如何授予NSDate?

我试过了:

NSString *currentDateString = @"2014-01-08T21:21:22.737+05:30";
       [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSS+05:30"];
       NSDate *currentDate = [dateFormatter dateFromString:currentDateString];

       NSLog(@"CurrentDate:%@",currentDate);

它返回零.有什么想法吗?

解决方法

使用这个代码,它工作正常你的日期错误.
NSDateFormatter *dateFormatter=[[NSDateFormatter alloc]init];

NSString *currentDateString = @"2014-01-08T21:21:22.737+05:30";
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZ"];        
NSDate *currentDate = [dateFormatter dateFromString:currentDateString];

NSLog(@"CurrentDate:%@",currentDate);

快乐编码!!!!!!!!!!

原文链接:https://www.f2er.com/iOS/336295.html

猜你在找的iOS相关文章