以下を使用して、アラートビューでアクティビティインジケータを表示しています。
UIAlertView *Alert= [[UIAlertView alloc] initWithTitle:@"Loading"
message:@"\n"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:nil];
UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
spinner.center = CGPointMake(139.5, 75.5);
[Alert addSubview:spinner];
[spinner startAnimating];
[Alert show];
[Alert dismissWithClickedButtonIndex:0 animated:YES];
唯一のことは、それが画面からすぐに消えることです。アラートが現在表示されているナノ秒ではなく、たとえば2秒間画面に表示される時間を指定したいと思います。これを実行/実装する方法がわからない場合は、ある種のNSTimerを使用しますか?そうであれば、これを実装する方法についてアドバイスをいただければ幸いです。ありがとう。