Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.