Без какого-либо кода, показывающего, как вы добавляете его в текущее представление, вам будет сложно помочь.При этом это фрагмент кода, который я использую в одном из моих приложений, модальном UITableViewController, который отображает MBProgressHUD при обновлении данных.
HUD = [[MBProgressHUD alloc] initWithView:self.view];
[self.view addSubview:HUD];
// Regiser for HUD callbacks so we can remove it from the window at the right time
HUD.delegate = self;
HUD.labelText = @"Creating Company";
HUD.detailsLabelText = @"Please Wait";
// Show the HUD while the provided method executes in a new thread
[HUD showWhileExecuting:@selector(sendNewCompanyInformation) onTarget:self withObject:nil animated:YES];