Skip to content

Instantly share code, notes, and snippets.

@drale2k
Created September 26, 2014 10:01
Show Gist options
  • Save drale2k/9f850d526823a9070d4f to your computer and use it in GitHub Desktop.
Save drale2k/9f850d526823a9070d4f to your computer and use it in GitHub Desktop.
// Get current date in ISO 8601 string
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSLocale *enUSPOSIXLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"];
[dateFormatter setLocale:enUSPOSIXLocale];
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSDate *now = [NSDate date];
NSString *endedAt = [dateFormatter stringFromDate:now];
self.workoutSessionManager.workoutSession.endedAt = endedAt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment