Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get UTC time and local time from NSDate object

In objective-c, the following code results in the UTC date time information using the date API.

NSDate *currentUTCDate = [NSDate date] 

In Swift however,

let date = NSDate.date() 

results in local date and time.

I have two questions:

  1. How can I get UTC time and local time (well date gives local time) in NSDate objects.
  2. How can I get precision for seconds from the NSDate object.

EDIT 1: Thanks for all the inputs but I am not looking for NSDateFormatter objects or string values. I am simply looking for NSDate objects (however we cook them up but that's the requirement).
See point 1.

like image 631
p0lAris Avatar asked Jul 23 '14 17:07

p0lAris


People also ask

How do you calculate UTC time from local time?

Add the local time offset to the UTC time. For example, if your local time offset is -5:00, and if the UTC time is shown as 11:00, add -5 to 11. The time setting when adjusted for offset is 06:00 (6:00 A.M.). Note The date also follows UTC format.

How do I get UTC timestamp?

Use the getTime() method to get a UTC timestamp, e.g. new Date(). getTime() . The method returns the number of milliseconds since the Unix Epoch and always uses UTC for time representation.

How do you convert UTC time to local time in node JS?

Use the Date() constructor to convert UTC to local time, e.g. new Date(utcDateStr) . Passing a date and time string in ISO 8601 format to the Date() constructor converts the UTC date and time to local time. Copied!


2 Answers

NSDate is a specific point in time without a time zone. Think of it as the number of seconds that have passed since a reference date. How many seconds have passed in one time zone vs. another since a particular reference date? The answer is the same.

Depending on how you output that date (including looking at the debugger), you may get an answer in a different time zone.

If they ran at the same moment, the values of these are the same. They're both the number of seconds since the reference date, which may be formatted on output to UTC or local time. Within the date variable, they're both UTC.

Objective-C:

NSDate *UTCDate = [NSDate date] 

Swift:

let UTCDate = NSDate.date() 

To explain this, we can use a NSDateFormatter in a playground:

import UIKit  let date = NSDate.date()     // "Jul 23, 2014, 11:01 AM" <-- looks local without seconds. But:  var formatter = NSDateFormatter() formatter.dateFormat = "yyyy-MM-dd HH:mm:ss ZZZ" let defaultTimeZoneStr = formatter.stringFromDate(date)     // "2014-07-23 11:01:35 -0700" <-- same date, local, but with seconds formatter.timeZone = NSTimeZone(abbreviation: "UTC") let utcTimeZoneStr = formatter.stringFromDate(date)     // "2014-07-23 18:01:41 +0000" <-- same date, now in UTC 

The date output varies, but the date is constant. This is exactly what you're saying. There's no such thing as a local NSDate.

As for how to get microseconds out, you can use this (put it at the bottom of the same playground):

let seconds = date.timeIntervalSince1970 let microseconds = Int(seconds * 1000) % 1000 // chops off seconds 

To compare two dates, you can use date.compare(otherDate).

like image 111
Steven Fisher Avatar answered Oct 20 '22 17:10

Steven Fisher


Xcode 9 • Swift 4 (also works Swift 3.x)

extension Formatter {     // create static date formatters for your date representations     static let preciseLocalTime: DateFormatter = {         let formatter = DateFormatter()         formatter.locale = Locale(identifier: "en_US_POSIX")         formatter.dateFormat = "HH:mm:ss.SSS"         return formatter     }()     static let preciseGMTTime: DateFormatter = {         let formatter = DateFormatter()         formatter.locale = Locale(identifier: "en_US_POSIX")         formatter.timeZone = TimeZone(secondsFromGMT: 0)         formatter.dateFormat = "HH:mm:ss.SSS"         return formatter     }() } 

extension Date {     // you can create a read-only computed property to return just the nanoseconds from your date time     var nanosecond: Int { return Calendar.current.component(.nanosecond,  from: self)   }     // the same for your local time     var preciseLocalTime: String {         return Formatter.preciseLocalTime.string(for: self) ?? ""     }     // or GMT time     var preciseGMTTime: String {         return Formatter.preciseGMTTime.string(for: self) ?? ""     } } 

Playground testing

Date().preciseLocalTime // "09:13:17.385"  GMT-3 Date().preciseGMTTime   // "12:13:17.386"  GMT Date().nanosecond       // 386268973 

This might help you also formatting your dates:

enter image description here

like image 45
Leo Dabus Avatar answered Oct 20 '22 19:10

Leo Dabus