美文网首页
转换日期格式 年/月/日 /星期

转换日期格式 年/月/日 /星期

作者: 京哥 | 来源:发表于2016-11-17 18:17 被阅读0次

    NSDateFormatter *timeFormatter = [NSDateFormatter new];

    [timeFormatter setDateStyle:NSDateFormatterFullStyle];

    NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"zh"];

    [timeFormatter setLocale:locale];

    timeFormatter.dateFormat = @"yyyy/MM/dd EEE";

    NSDate * date = [NSDate date];

    NSString * str= [timeFormatter stringFromDate:date ];

    相关文章

      网友评论

          本文标题:转换日期格式 年/月/日 /星期

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