NSDate 类型用法

NSDate* date1 = [NSDate date];
        NSLog(@"%@", date1);
        
        NSLocale* cn = [NSLocale currentLocale];
        NSLog(@"%@", [date1 descriptionWithLocale:cn]);

输出

2014-03-08 13:48:35.188 prog1[55062:303] 2014-03-08 05:48:35 +0000

2014-03-08 13:48:35.193 prog1[55062:303] 201438星期六中国标准时间13:48:35

        NSDateFormatter* fmt = [[NSDateFormatter alloc] init];
        fmt.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"zh_CN"];
        fmt.dateFormat = @"yyyy-MM-dd HH:mm:ss";
        NSString* dateString = [fmt stringFromDate:date1];
        NSLog(@"%@", dateString);

接着上面的代码,再写的。输出为:

2014-03-08 14:18:35.976 prog1[55227:303] 2014-03-08 14:18:35

用的最多的时间格式。

你可能感兴趣的:(NSDate 类型用法)