22 lines
422 B
Swift
22 lines
422 B
Swift
//
|
|
// BRHUD.swift
|
|
// BeeReel
|
|
//
|
|
// Created by 湖南秦九 on 2025/6/24.
|
|
//
|
|
|
|
import SVProgressHUD
|
|
|
|
struct BRHUD {
|
|
|
|
static func show(containerView: UIView? = nil, type: SVProgressHUDMaskType = .clear) {
|
|
SVProgressHUD.setContainerView(containerView)
|
|
SVProgressHUD.setDefaultMaskType(type)
|
|
SVProgressHUD.show()
|
|
}
|
|
|
|
static func dismiss() {
|
|
SVProgressHUD.dismiss()
|
|
}
|
|
}
|