Created
July 25, 2009 19:11
-
-
Save shanev/154861 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma mark FBDialogDelegate | |
- (void)dialogDidSucceed:(FBDialog*)dialog { | |
NSLog(@"post status"); | |
FBFeedDialog* feedDialog = [[[FBFeedDialog alloc] init] autorelease]; | |
feedDialog.delegate = self; // change to different delegate to stop loopback? | |
feedDialog.templateBundleId = 104929001157; | |
feedDialog.templateData = @"{\"theme\": \"Electronic Theme\"}"; | |
[feedDialog show]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment