MoviaBox/Thimra/Base/Extension/Dictionary+SPAdd.swift
2025-04-25 15:42:52 +08:00

24 lines
410 B
Swift

//
// Dictionary+SPAdd.swift
// Thimra
//
// Created by on 2025/4/25.
//
import UIKit
extension Dictionary {
func toJsonString() -> String? {
do {
let data = try JSONSerialization.data(withJSONObject: self)
let jsonStr = String(data: data, encoding: .utf8)
return jsonStr
} catch {
}
return nil
}
}