Alternatives for MBProgressHUD?

Gary picture Gary · May 28, 2011 · Viewed 15k times · Source

I've used SVProgressHUD which I liked but it didn't support orientation changes. I am using MBProgressHUD but it is a modal HUD.

Is there any good alternative to these? I need the HUD to be non-modal and needs to support orientation changes.

Answer

Matej Bukovinski picture Matej Bukovinski · May 31, 2011

Simply setting:

HUD.userInteractionEnabled = NO;

is all it takes to achieve a non-modal behavior (allow touches to pass through the HUD). You don't even have to modify the actual MBProgressHUD code.