アラートビューにアクティビティインジケーターがあり、アプリがサーバーの応答を受け取るまで使用します。アプリはサーバーにデータを送信し、アラートビューには、サーバーが応答を送信したときにデータを閉じる方法が表示されます。これが私のアラートのコードです
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Canceling reservation" message:@"please wait" delegate:self cancelButtonTitle:nil otherButtonTitles: nil];
[alert show];
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
// Adjust the indicator to place at the bottom of the dialog window.
indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height-50);
[indicator startAnimating];
[alert addSubview:indicator];