Skip to content

Instantly share code, notes, and snippets.

View leochoo's full-sized avatar
🪄

Leonard Choo leochoo

🪄
View GitHub Profile
@leochoo
leochoo / datetimeswift.swift
Last active October 15, 2018 01:37
Swift 4 Date and Time Example
import UIKit
// Date and Time
let date = Date()
let calendar = Calendar.current
let month = calendar.component(.month, from: date)
let day = calendar.component(.day, from: date)
let hour = calendar.component(.hour, from: date)