24 lines
410 B
Swift
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
|
|
}
|
|
|
|
}
|