I'm trying to change the value of an int inside a block. (In this code example, the SLRequest itself is only context-setting from my full app and is not expected to work here -- just compile and run ok so I can test setting the int. Socialframework needs to be included in the project for this example to compile. Output is included below.)
#import "MainViewController.h"
#import <Social/Social.h>
@interface MainViewController ()
@end
@implementation MainViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// This SLRequest stuff is just to provide the context for the block in question below
NSString * theURLstr = @"http://someurl";
NSURL * theNSURL = [[NSURL alloc] initWithString:theURLstr];
SLRequest *theRequest = [SLRequest requestForServiceType: SLServiceTypeFacebook requestMethod:SLRequestMethodGET URL:theNSURL parameters:nil];
[theRequest setAccount:nil]; //
// This is our test value. We expect to be able to change it inside the following block
__block int test = 44;
NSLog(@"(BEFORE block) test is: %d", test);
[theRequest performRequestWithHandler:
^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error2)
{
// We get here late.
test = 27;
NSLog(@"(INSIDE block) test is: %d", test);
}];
// We get here fine, but test isn't changed
NSLog(@"(AFTER block) test is: %d", test);
}
// --- OUTPUT:
2013-02-10 19:13:53.283 debugExp1[92743:c07] (BEFORE block) test is: 44
2013-02-10 19:13:53.285 debugExp1[92743:c07] (AFTER block) test is: 44
2013-02-10 19:13:53.312 debugExp1[92743:1303] (INSIDE block) test is: 27
Notice the out-of-sequence output lines. It starts and finishes before it executes the middle. How can I fix this? I just want to change the int value in that location and have it stick for use outside the block.
=== UPDATE ===
I'm finding multiple tangential versions of this question online, but in unusable forms to my purpose. So maybe I'm posing my question in a way that is unanswerable. Let me try adding some context.
My app is assembling data from multiple Twitter API calls of different types as specified by Twitter. I'm not building tables for display. I just want the data in ivars and eventually managed objects. The app has a lot to do other than just get the Twitter data, so I don't want to put too much of the structure of my app inside a single performRequestWithHandler block just so I can access its returned data at some point. To me, getting the data from the net is a utility operation, not the sole app design determinant. Some of my API calls depend specifically on data gathered from other types of API calls executed earlier in a specific order.
I need to know when those previous calls have finished so I can use the ivar values I set from their data objects.
That is, I need a way to make API call#1, assign assorted return data to ivars, do other stuff with the ivars outside the performRequestWithHandler block, make API call#2 and #3, etc., based on what call#1 and subsequent API calls returned, and eventually shuffle off to other viewControllers to display the processed data from the multiple API calls' return values in various ways.
I totally get that performRequestWithHandler is executed on an unspecified thread which will get executed I-don't-know-when. I'm not worried about UI long waits due to synced network access latency because I intend to specify very short wait times. I'm not going to make my users sit around waiting for a slow network connection! If the connection is slow, I'll show an activity indicator briefly and give up waiting quickly to show an alert. That part of the app isn't my challenge of focus here.
My challenge is assembling the returned data from multiple performRequestWithHandler calls in one place after some or all of them have finished.
It looks to me like performRequestWithHandler may be too high level a call to achieve the kind of sync control and data access I need. I don't know.
The code example above was just the simplest way I could think of to isolate and demonstrate my problem in a simple way that compiles. I've tried many variants but no joy so far.
Hope this helps clarify the design idea I'm working with.
Thanks for any specific help, clues or ideas you may be able to offer. A minuscule working code sample would be a Godsend at this point, but I'll keep working on it and post a solution if/when I find one.