Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives for MBProgressHUD?

Tags:

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.

like image 477
Gary Avatar asked May 28 '11 02:05

Gary


1 Answers

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.

like image 188
Matej Bukovinski Avatar answered Jan 03 '23 11:01

Matej Bukovinski