DateFormatter+Extension.swift 294 B

123456789101112131415161718
  1. //
  2. // DateFormatter+Extension.swift
  3. // QuickSearchLocation
  4. //
  5. // Created by Destiny on 2024/4/15.
  6. //
  7. import Foundation
  8. let qsl_formatter = DateFormatter()
  9. public extension DateFormatter {
  10. convenience init(format: String) {
  11. self.init()
  12. dateFormat = format
  13. }
  14. }