jsdw_ios/QuickLocation/Core/Extension/Date+Extension.swift

17 lines
316 B
Swift

//
// 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)
}
}