I'm trying to do the following:
- show a buttonless UIAlertView showing a "Loading" message
perform a REST request like
currentPlans = [RestUtils restSynchnonousCall:url usingMethod:@"GET" withBody:nil];
dismissing the UIAlertView
return currentPlans
I've looked for dispatch_async
pattern, I've also looked at this thread UIAlertView starts to show, screen dims, but it doesn't pop up until it's too late! without understanding so much... :(
Thank you in advance!