Skip to content

Instantly share code, notes, and snippets.

View agiguere's full-sized avatar

Alexandre Giguere agiguere

  • Dollarcity
  • Panama City
View GitHub Profile
@agiguere
agiguere / HUDLoadingIndicator.swift
Last active January 5, 2021 15:59
MBProgressHUD Swift extension with dimmed background
import UIKit
public extension MBProgressHUD {
@objc func dimBackgroundView() {
backgroundView.style = .solidColor
backgroundView.color = UIColor(white: 0.0, alpha: 0.4)
bezelView.style = .solidColor
bezelView.backgroundColor = UIColor(white: 0.0, alpha: 0.9)
contentColor = .white
}