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 see in the internet codes that do upload images but the use "Facebook" that isn't recognized, so which framework do I need to use in iOS? Do you have a code example? I found this code:

- (IBAction)uploadPhoto:(id)sender {
    NSString *path = @"http://www.facebook.com/images/devsite/iphone_connect_btn.jpg";
    NSURL *url = [NSURL URLWithString:path];
    NSData *data = [NSData dataWithContentsOfURL:url];
    UIImage *img = [[UIImage alloc] initWithData:data];

    NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:img, @"picture", @"my photo's caption text here.", @"message", nil];
    [facebook requestWithMethodName: @"photos.upload" andParams:params andHttpMethod:@"POST" andDelegate:self];
    [img release];
}
share|improve this question

1 Answer

You'll need to add the Facebook iOS SDK to your project.

All the details you need should be found here

share|improve this answer

Your Answer

 
discard

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

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