Hi let me explain briefly.
i am developing an iphone application where i have to show multiple UIAlerts one after the another,
but if i simply use multiple [alert show];
they all show up stacking up to each other.
one solution is to show one alert [alert1 show];
then in
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
detect the end of first alert1 then show the second alert by calling [alert2 show];
and so on continue to show other alerts using alertView.
i want to know is there any other way to show multiple alerts in a sequence without the pain of using alertView to detect end of first alert and then show the second one ?