Skip to content

Instantly share code, notes, and snippets.

@tempos21ios
Created April 15, 2013 06:51
Show Gist options
  • Save tempos21ios/5386198 to your computer and use it in GitHub Desktop.
Save tempos21ios/5386198 to your computer and use it in GitHub Desktop.
Java Unix Timestamp
-(long long int)javaUnixTimeStamp:(NSDate *)fecha
{
long long int ti = ( (long long int)[fecha timeIntervalSince1970]);
ti *= 1000;
return ti;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment