GMT 时间生成

作者: Michael_涵 | 来源:发表于2017-02-16 14:49 被阅读0次

    oc code:

    NSDate *date = [NSDate date];

    NSTimeZone *zone = [NSTimeZone timeZoneWithName:@"GMT"];

    [NSTimeZone setDefaultTimeZone:zone];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

    dateFormatter.dateFormat = @"EEE,d MMM yyyy HH:mm:ss 'GMT'";

    dateFormatter.locale = [[NSLocal alloc] initWithLocalIdentifier:@"en_US"];

    NSString *dateString = [dateFormatter stringFromDate:date];

    output:

    Wed, 1 Apr 2016 12:51:39 GMT

    相关文章

      网友评论

        本文标题:GMT 时间生成

        本文链接:https://www.haomeiwen.com/subject/xdchwttx.html