Skip to content

Instantly share code, notes, and snippets.

View GE-N's full-sized avatar

Jerapong Nampetch GE-N

View GitHub Profile
@GE-N
GE-N / CalendarExtension.swift
Created October 31, 2018 08:40
Calendar method; Get first monday and first day of year helper
import Foundation
extension Calendar {
static func australia() -> Calendar {
var calendar = Calendar(identifier: .gregorian)
calendar.timeZone = TimeZone(abbreviation: "UTC")!
calendar.locale = Locale(identifier: "en_AU")
return calendar
}