美文网首页
iOS 时区

iOS 时区

作者: Dolway | 来源:发表于2023-09-15 14:35 被阅读0次
    //        关于时区
    //        print(NSTimeZone.local.daylightSavingTimeOffset()) // 夏令时偏移多少秒
    //        print(NSTimeZone.local.abbreviation()!) // 时区  GMT+2
    //        print(NSTimeZone.local.secondsFromGMT()) // 与零时区的便宜秒数 7200
    //        print(Date()) //当前时间,不含DST。需要 DateFormatter中指定 时区才能解析出夏令时
    //
    //        let formater = DateFormatter()
    //        formater.timeZone = TimeZone(abbreviation: "Europe/Paris")  // Europe/Paris   Asia/Shanghai GMT+8
    //        formater.dateFormat = yyyyMMddFormat
    //        let date = Date()
    //        let dateString = formater.string(from: date)
    //        print(dateString)
            
            
    //        //    2023-06-20T09:59:57+08:00
    //        NSString *s = [NSISO8601DateFormatter stringFromDate:[NSDate date] timeZone:[NSTimeZone timeZoneWithAbbreviation:@"GMT+8"] formatOptions:NSISO8601DateFormatWithInternetDateTime];
    

    相关文章

      网友评论

          本文标题:iOS 时区

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