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 am posting an image on facebook from iphone using their sample code. And the image is posted fine, the issue is I need to add some text with photo (a default text) , how can I add text with the image I am posting.

    [FBSession openActiveSessionWithPermissions:[NSArray arrayWithObject:@"publish_actions"] allowLoginUI:YES completionHandler:^(FBSession *session,FBSessionState status, NSError *errr) 
 {
     if (FBSession.activeSession.isOpen) {             

         UIImage *img = [UIImage imageNamed:@"Icon@2x.png"];

         [FBRequestConnection startForUploadPhoto:img
                                completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
                                    [self showAlert:@"Photo Post" result:result error:error];
                                }];


     }
share|improve this question

1 Answer

check this other question and the answers, there you will find how to do it in the user wall and in the user pictures

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.