here is my code , but it showing the progress . is there any error in this code? please give some idea to fix this, or give some link related to this.
class
Go through the below code
class ViewController: UIViewController, MBProgressHUDDelegate {
var hud : MBProgressHUD = MBProgressHUD()
func fetchData() {
hud = MBProgressHUD.showHUDAddedTo(self.view, animated: true)
hud.mode = MBProgressHUDModeIndeterminate
hud.labelText = "Loading"
}
}
If you want to dismiss the HUD
MBProgressHUD.hideHUDForView(self.view, animated: true)