I am trying to initalize the MBProgress HUD with a mode but the progress pops up only with the label not the annular mode.
//Addition of new HUD progress whilst running the process field entries method
HUD = [[MBProgressHUD alloc] initWithView:self.view];
[self.view addSubview:HUD];
// Set determinate mode
HUD.mode = MBProgressHUDModeAnnularDeterminate;
HUD.delegate = self;
HUD.labelText = @"Signing you up";
// myProgressTask uses the HUD instance to update progress
[HUD showWhileExecuting:@selector(processFieldEntries) onTarget:self withObject:nil animated:YES];
I am also getting a warning on the delegate row.
Assigning to 'id<MBProgressHUDDelegate>' from incompatible type 'NewUserViewController *const __strong'
///
This is another example - HUD-test is a simple application I setup to show the full code and issue(second image) \\
///