Created
June 21, 2016 19:15
-
-
Save paulofaria/4e57dfa60eae088df2c9a3a3bee7630b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func getDateTime() -> (String, String) { | |
let now = NSDate() | |
let dayTimePeriodFormatter = NSDateFormatter() | |
dayTimePeriodFormatter.dateFormat = "E, d MMM yyyy" | |
let date = dayTimePeriodFormatter.string(from: now) | |
dayTimePeriodFormatter.dateFormat = "HH:mm:ss Z" | |
let time = dayTimePeriodFormatter.string(from: now) | |
return (date, time) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment