is there a way for us to block a for loop?
I have a loop where inside it, it ask user with a dialog box. I would like it to pause the loop after user press OK or Cancel.
Is it possible?
Because looping an alertController looks really ugly especialy when you have many loops.
for request in friendRequests
{
let alertController = UIAlertController(title: "Friend Request", message: "Would you like to accept this friend request?", preferredStyle: UIAlertControllerStyle.Alert);
let cancelAction: UIAlertAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Cancel, handler: nil);
let confirmAction: UIAlertAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil);
alertController.addAction(cancelAction);
alertController.addAction(confirmAction);
//How do we block or wait until user press a button??
self.navigationController.presentViewController(alertController);
}
Any thoughts? Thanks
Use Recursive Function rather than loop
Example