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.
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.