Skip to content

Instantly share code, notes, and snippets.

View soilmilk's full-sized avatar

anthonydu soilmilk

View GitHub Profile
@PetreVane
PetreVane / Convert Date To Month-Year Format.swift
Created February 2, 2020 15:22
These 2 extensions convert a String to Date, and back to String
extension Date {
//2
func convertToMonthYearFormat() -> String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MMM yyyy"
return dateFormatter.string(from: self)
}
}