Skip to content

Instantly share code, notes, and snippets.

@marcelosalloum
Created October 14, 2019 13:04
Show Gist options
  • Select an option

  • Save marcelosalloum/d7e72b329c8826ce5768f82df8d17a8c to your computer and use it in GitHub Desktop.

Select an option

Save marcelosalloum/d7e72b329c8826ce5768f82df8d17a8c to your computer and use it in GitHub Desktop.
HUD usage on medium post - p4
import SVProgressHUD
struct HUD {
static func showSuccessHUD(withStatus status: String, delay: TimeInterval = 2) {
SVProgressHUD.setBackgroundColor(.white)
SVProgressHUD.setForegroundColor(.black)
SVProgressHUD.showSuccess(withStatus: status)
SVProgressHUD.dismiss(withDelay: delay)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment