iOS如何将一个日期字符串转换为NSDate或者自己想要的日期格式
1个回答
2016-11-23 · 学高端技术就来八维教育
关注
展开全部
可取得日期字符串"Wed May 2 22:27:08 +0800 2012", 想做日期计算,想转成NSDate,根据网上资料,可先设置对应的NSDateFormatter,然后再从其转成对应的NSDate, 对应的代码片段如下:
NSString* dateStr = @"Wed May 2 22:27:08 +0800 2012";
NSDateFormatter* formater = [[NSDateFormatter alloc] init];
[formater setDateFormat:@"EEE MMM d HH:mm:ss zzzz yyyy"];
NSDate* date = [formater dateFromString:dateStr];
NSLog(@"%@", date);
//NSDate* now = [NSDate now];
double inter = fabs([date timeIntervalSinceNow]);
if( inter < 60)
NSLog(@"1 mins ago!");
else if(inter < 60*60)
NSLog(@"1 hours ago!");
else if(inter < 60*60*24)
NSLog(@"1 days ago!");
NSLog(@"interval is %f min", inter/60);
2. 上面代码在真机上运行后,发现取得date 为NULL,模拟器正常显示,上网搜索后发现需要设置local, 果然设置后,真机正常
NSLocale* local =[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease];
[formatter setLocale: local];
NSString* dateStr = @"Wed May 2 22:27:08 +0800 2012";
NSDateFormatter* formater = [[NSDateFormatter alloc] init];
[formater setDateFormat:@"EEE MMM d HH:mm:ss zzzz yyyy"];
NSDate* date = [formater dateFromString:dateStr];
NSLog(@"%@", date);
//NSDate* now = [NSDate now];
double inter = fabs([date timeIntervalSinceNow]);
if( inter < 60)
NSLog(@"1 mins ago!");
else if(inter < 60*60)
NSLog(@"1 hours ago!");
else if(inter < 60*60*24)
NSLog(@"1 days ago!");
NSLog(@"interval is %f min", inter/60);
2. 上面代码在真机上运行后,发现取得date 为NULL,模拟器正常显示,上网搜索后发现需要设置local, 果然设置后,真机正常
NSLocale* local =[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease];
[formatter setLocale: local];
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询