我得到的日期字符串是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);
快乐编码!!!!!!!!!!