Is there a way to make the MBProgressHUD show at the bottom or top of the screen?
I have tried setting the frame using [hud setFrame:....];
, initW
I had the same trouble with a SVProgressHUD turns out I just had to add a new method
+ (void)setOffsetFromCenter:(UIOffset)offset {
[self sharedView].offsetFromCenter = offset;
}
and call it when I showed the HUD
[SVProgressHUD setOffsetFromCenter:UIOffsetMake(0, 120)];
Mine just had to go a bit lower than mid-screen. Try it out, its a SingleTon so it's easier to call show and remove.