I want to post an OpenGraph action only after successful execution of some other asynchronous piece of code when I click on a button. Here is the current structure of my code:
I have a button that fires the function:
- (void)actionButtonPost {
// Some code and tests
// If test are successful then start asynchronous function:
if( myTestResult == 1 )
{
[NSThread detachNewThreadSelector:@selector(actionButtonPostDo) toTarget:self withObject:nil];
}
}
- (void)actionButtonPostDo {
// Some code and other tests
// If test are successful then post opengraph:
if( myOtherTestResult == 1 )
{
[self postOpenGraphAction];
}
}
- (void)postOpenGraphAction
{
NSLog(@"WriteVc(postOpenGraphAction) START");
// First create the Open Graph wine object for the wine we drank.
id<SCOGWine> wineObject = (id<SCOGWine>)[FBGraphObject graphObject];
wineObject.url = self.chateauUrl;
// Then create an Open Graph eat action with the wine, our location, and the people we were with.
id<SCOGDrinkWineAction> action = (id<SCOGDrinkWineAction>)[FBGraphObject graphObject];
action.wine = wineObject;
// Create the request and post the action to the "me/codalyfb:drink" path.
[FBSettings setLoggingBehavior:[NSSet setWithObjects:FBLoggingBehaviorFBRequests, FBLoggingBehaviorFBURLConnections, nil]];
[FBRequestConnection startForPostWithGraphPath:@"me/myapp:drink"
graphObject:action
completionHandler:
^(FBRequestConnection *connection, id result, NSError *error) {
if (!error) NSLog(@"WriteVc(postOpenGraphAction):id: %@", [result objectForKey:@"id"]);
else NSLog(@"WriteVc(postOpenGraphAction):error: domain = %@, code = %d", error.domain, error.code);
}
];
}
I have noticed that the code
(FBRequestConnection *connection, id result, NSError *error) {
if (!error) NSLog(@"WriteVc(postOpenGraphAction):id: %@", [result objectForKey:@"id"]);
else NSLog(@"WriteVc(postOpenGraphAction):error: domain = %@, code = %d", error.domain, error.code);
}
is only executed if the function [self postOpenGraphAction]; is made inside - (void)actionButtonPost and not - (void)actionButtonPostDo, as if the fact that the call of - (void)actionButtonPostDo in asynchronous mode would make the postOpenGraphAction call ineffective.
Any idea?