ThimraTV/ThimraTV/Libs/HUD/SPHUD.swift
2025-07-19 15:27:22 +08:00

25 lines
507 B
Swift

//
// SPHUD.swift
// ThimraTV
//
// Created by Overseas on 2025/4/24.
//
import UIKit
class SPHUD: NSObject {
static func config() {
SVProgressHUD.setDefaultMaskType(.clear)
}
static func show(status: String? = nil, containerView: UIView? = nil) {
SVProgressHUD.setContainerView(containerView)
SVProgressHUD.setDefaultMaskType(.clear)
SVProgressHUD.show(withStatus: status)
}
static func dismiss() {
SVProgressHUD.dismiss()
}
}