NSString * abc = @“2009-12-12 16:25:00”;
我有这种格式的1个字符串,如上所示。
NSDate * currentDate = [NSDate date]; 现在我想要currentDate也是这种格式的指定2009-12-12 16:25:00
我也希望将此currentDate从NSdate转换为NSString格式,并指定thisformat 2009-12-12 16:25:00
帮帮我
答案 0 :(得分:0)
使用NSDateFormatter
。
答案 1 :(得分:0)
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString* golly = [dateFormatter stringFromDate:[NSDate date]];