BeeReel/BeeReel/Lib/HUD/BRHUD.swift
2025-06-30 18:18:27 +08:00

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()
}
}