25 lines
507 B
Swift
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()
|
|
}
|
|
}
|