swift get hour from date code example
Example 1: swift get current hour
let date = Date()
let calendar = Calendar.current
let hour = calendar.component(.hour, from: date)
let minute = calendar.component(.minute, from: date)
let second = calendar.component(.second, from: date)
Example 2: swift get current hour
let hour = Calendar.current.component(.hour, from: Date())
Example 3: swift get current hour
let formatter = DateFormatter()
formatter.dateFormat = "hh a"
let hourString = formatter.string(from: Date())