0

你好 !

我有一个字符串 :2012-11-07 15:22:06我想NSDateFormatter对它做一个。我这样做:

NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"HH:mm, MMMM d, yyyy"];
NSString *date = [[NSString alloc] initWithFormat:@"%@", [df dateFromString:myString]];

但它不起作用,它返回“ (null)”。

希望有人能帮助我。

谢谢

4

3 回答 3

3

所以你设置的格式是 [df setDateFormat:@"HH:mm, MMMM d, yyyy"];

字符串 myString 是 @"2012-11-07 15:22:06"

=> 不匹配

---所以我收集到阅读您对其他答案的评论:

#import <Foundation/Foundation.h>

int main(int argc, char *argv[]) {
@autoreleasepool {
    NSString *myString =  @"2012-11-07 15:22:06"; //yyyy-MM-dd HH:mm:ss

    //convert to date
    NSDateFormatter *df = [[NSDateFormatter alloc] init];
    [df setDateFormat:@"yyyy-MM-DD HH:mm:ss"];
    NSDate *myDate = [df dateFromString:myString];
    NSLog(@"%@", myDate); //2012-01-07 14:22:06 +0000

    //output it in natural language        
    NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
    [df setTimeStyle:NSDateFormatterNoStyle];
    [df setDateStyle:NSDateFormatterMediumStyle];
    [df setLocale:usLocale];
    NSLog(@"%@", [df stringFromDate:myDate]); //Jan 7, 2012
}
}
于 2012-11-09T00:20:32.497 回答
1

Your format isn't even close to the string's format. Use:

yyyy-MM-dd HH:mm:ss
于 2012-11-09T00:28:25.867 回答
0

使用此格式:yyyy-MM-dd HH:mm:ss 获取格式:2012-11-07 15:22:06。

获取格式:2012 年 11 月 7 日使用此函数:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeStyle:NSDateFormatterNoStyle];
[dateFormatter setDateStyle:NSDateFormatterLongStyle];
NSString *string=[dateFormatter stringFromDate:date];
NSDate *newDate=[dateFormatter dateFromString:string];
于 2012-11-09T05:59:50.470 回答