次のように、2 つのアラート ビューを連続して表示しています。
-IBアクション
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"my message" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert setDelegate:self];
[alert show];
}
- (void)didPresentAlertView:(UIAlertView *)alertView
{
[alertView setTitle:@"My new title"];
[alertView setMessage:@"My new message"];
}
最初のアラート ビューから 2 番目のアラート ビューへの遷移は非常に速く、ユーザーは最初のメッセージを読む時間がありません。誰かがアラート間に遅延を追加する方法をアドバイスできますか. NSTimer を実装する必要があると思いますが、これを実装することでアドバイスを得ることができます。