Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- func convert(with time: TimeInterval) -> String {
- let date = Date(timeIntervalSince1970: time)
- let dateFormatter = DateFormatter()
- dateFormatter.dateFormat = "yyyy/MM/dd"
- return dateFormatter.string(from: date)
- }
Advertisement
Add Comment
Please, Sign In to add comment