I have a function using AFJSONRequestOperation, and I wish to return the result only after success. Could you point me in the right direction? I'm still a bit clueless with blocks and AFNetworking specifically.

-(id)someFunction{
    __block id data;

    AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request
        success:^(NSURLRequest *request, NSHTTPURLResponse *response, id json){
            data = json;
            return data; // won't work
        }
        failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error){

        }];



    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    [queue addOperation: operation];

    return data; // will return nil since the block doesn't "lock" the app.
}
link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

To block the execution of the main thread until the operation completes, you could do [operation waitUntilFinished] after it's added to the operation queue. In this case, you wouldn't need the return in the block; setting the __block variable would be enough.

That said, I'd strongly discourage forcing asynchronous operations to synchronous methods. It's tricky to get your head around sometimes, but if there's any way you could structure this to be asynchronous, that would almost certainly be the way to go.

link|improve this answer
Hey matt , thanks for the reply. Usually i do use my data asynchronously , but specifically for this i have to return some data from an API , so i don't really see another way, unless you can recommend some way of action? :) – Shai Mishali Nov 1 '11 at 17:09
You could always add a block parameter to the method, like -someFunctionWithBlock:^(NSData *data) {...}. – mattt Nov 1 '11 at 17:11
As i said i'm quite of a newbie with blocks, how will this help? (and more importantly , what does it mean to have a block parameter in the method?) – Shai Mishali Nov 1 '11 at 17:14
4  
The trick to asynchronous programming is to break the procedural, synchronous assumption that data is there when you ask for it. Instead, with async, when you ask for something, you give it a callback to perform when the data finally is ready. In this case, you would call the block in the success block of the JSON operation. Rather than the method returning data, it's told what to do when the data is finished downloaded. Make sense? – mattt Nov 1 '11 at 17:18
Makes a lot of sense ! thanks for the lesson, i truly appreciate it :) I'll try writing one method this way and if it works for my needs i will definitely make it a habit :P – Shai Mishali Nov 1 '11 at 17:21
show 3 more comments
feedback

I would suggest that you don't make a synchronous method with AFNetworking (or blocks in general). A good approach is that you make another method and use the json data from the success block as an argument.

- (void)methodUsingJsonFromSuccessBlock:(id)json {
    // use the json
    NSLog(@"json from the block : %@", json); 
}

- (void)someFunction {
    AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request
        success:^(NSURLRequest *request, NSHTTPURLResponse *response, id json){
            // use the json not as return data, but pass it along to another method as an argument
            [self methodUsingJsonFromSuccessBlock:json];
        }
        failure:nil];

    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    [queue addOperation: operation];
}
link|improve this answer
Does json need to be retained somewhere so the instance isn't deallocated? I'm assuming the AFNetworking code is autoreleasing it. – raidfive Jan 16 at 23:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.