ユーザーがアプリケーションを初めて開いたときにのみ2つのアラートビューを表示したいのですが、2番目のビューは最初のビューが閉じられた後に表示されます。UIAlertViewsが以前に表示されていない場合にのみ表示されるように設定しましたが、これについてはサポートが必要ありません。この場合、2つのアラートビューを連続して表示する方法を理解するのに助けが必要です。
-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndexが機能しません。
これが私が持っているコードです-これはdidFinishLaunchingWithOptionsにあることを覚えておいてください:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
BOOL didFirstLaunch = [defaults boolForKey:@"DidFirstLaunch"];
if (!didFirstLaunch) {
[defaults setBool:YES forKey:@"DidFirstLaunch"];
UIAlertView *successAlert = //not important
[successAlert show];
[successAlert release];
//Somehow show second alert after the first is dismissed
}