jdg / MBProgressHUD

MBProgressHUD + Customizations
http://www.bukovinski.com/
MIT License
16.01k stars 3.56k forks source link

Fix show multiple Hud’s and them to hide them #459

Closed 4brunu closed 7 years ago

4brunu commented 7 years ago

I found a problem.

If I call + (instancetype)showHUDAddedTo:(UIView *)view animated:(BOOL)animated; twice and then + (BOOL)hideHUDForView:(UIView *)view animated:(BOOL)animated; twice, it doesn't hide the MBProgressHUD.

The problem is in the method + (BOOL)hideHUDForView:(UIView *)view animated:(BOOL)animated; that return's the same view in booth method calls. So I modify it to look for that hasn't finished yet.

fuboyou commented 7 years ago

+1