モードでMBProgressHUDを初期化しようとしていますが、進行状況は環状モードではなくラベルでのみポップアップ表示されます。
//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];
デリゲート行にも警告が表示されます。
Assigning to 'id<MBProgressHUDDelegate>' from incompatible type 'NewUserViewController *const __strong'
///
これは別の例です-HUD-testは、完全なコードを表示して発行するためにセットアップした単純なアプリケーションです(2番目の画像)\\
///