|
//
|
|
// Date+Extension.swift
|
|
// SHECommunity
|
|
//
|
|
// Created by Lin on 2024/12/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Date {
|
|
func formatterStyle(_ style: String) -> String {
|
|
let dateFormatter = DateFormatter()
|
|
dateFormatter.dateFormat = style
|
|
return dateFormatter.string(from: self)
|
|
}
|
|
}
|