Obtendo dados do bloco de conclusão NSURLResponse

Parece que eu não consegui o conceito de blocos completamente ainda ...

No meu código eu tenho que pegar os dados JSON doasychronous block para ser devolvido a partir do 'outer'método. Eu pesquisei e descobri que se definir umvariable with __block, o v̶i̶s̶i̶b̶i̶l̶i̶t̶y̶_mutability_ of essa variável é estendida para oblock.

Mas, por algum motivo, o objeto json retornado é nulo.

- (NSMutableDictionary *)executeRequestUrlString:(NSString *)urlString
{
__block NSMutableDictionary *json = nil;
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

[request setHTTPShouldHandleCookies:YES];
[request setHTTPMethod:@"GET"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-type"];

NSString *cookieString = [self.userDefaults objectForKey:SAVED_COOKIE];

[request addValue:cookieString forHTTPHeaderField:@"Cookie"];

[NSURLConnection sendAsynchronousRequest:request
                                   queue:[NSOperationQueue currentQueue]
                       completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
                       {

                           NSLog(@"dataAsString %@", [NSString stringWithUTF8String:[data bytes]]);

                           NSError *error1;
                           NSMutableDictionary * innerJson = [NSJSONSerialization
                                   JSONObjectWithData:data
                                              options:kNilOptions
                                                error:&error1];
                           json = innerJson;

                       }];

    return json;
}

questionAnswers(3)

yourAnswerToTheQuestion