MBProgressHUD blocks interactions with an uiscrollview when shown

ios

Solution

I'm using MBProgressHUD version 0.5 and simply set:

HUD.userInteractionEnabled = NO;

With this allow user interaction in parent view.

Problem

I'm using this MBProgressHUD code: ``` MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; hud.mode = MBProgressHUDModeText; hud.removeFromSuperViewOnHide = YES; [hud hide:YES afterDelay:1]; ``` For the period that the HUD is being shown interactions with an UIScrollview (that contains the button this is called from) are disabled. I can't click on other buttons, or scroll the UIScrollview. Why is MBProgressHUD blocking my interactions with the UIScrollview and how can I disable it?

Original source