## HUD = Heads Up Display
* head into github for progressHUD
#### MANUAL WAY
* In the github repo, download the package and head inside
* ProgressHUD-master/ProgressHUD/ProgressHUD/
* Select all three files: progressHUD.bundle, progressHUD.h and progressHUD.m
* Drag all three into your xcode project /Supporting Files directory
* A popup will show up: make sure Destination Copy items if needed is checked
* Add to targets: Your project name is also checked, click finish
* Would you like to configure an Objective-C bridging header? -> Create Bridgung Header
* This allows our swift code to accept obj-c written code
* Inside the newly formed document `...-bridging-header.h`, add the following lines: `#import "ProgressHUD.h" `
#### Usage
* In your swift code:
```swift
ProgressHUD.showSuccess("")
//or
ProgressHUD.showError("")
```