How to set time delay for displaying the alertview from one after another From an array? I have 5 alertview in an array.. Each alertview will Display after Some time duration.
for (NSDictionary *temp in [RMUserDefaults userDetails].SharedFolders)
{
NSString *name = temp[@"Name"];
alert1= [[CustomUIAlertView alloc]initWithTitle:@"message" message:[NSString stringWithFormat:@"Message.", name] delegate:self cancelButtonTitle:@"CANCEL" otherButtonTitles:nil]];
[alert1 show];
}