I want to wrap an async API that look like this:
[someObject completeTaskWithCompletionHandler:^(NSString *result) { }];
into a synchronous m
You can try to use NSOperations for this doing your things asynchronously.