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 need some help with Facebook integration from the experts. I'm working on an iOS 6 app using Social.framework for posting on Facebook.

-(IBAction)postToFacebook:(id)sender {
    if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) {
        facebookController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];

        [facebookController addImage:self.selectedImageView.image];
        [self presentViewController:facebookController animated:YES completion:Nil];
}

}

The problem is when I upload the photo it goes to an album called iOS photos. Is it possible when I upload the photo, to be created automatically a new album with the name of my app and all the photos go there?

share|improve this question
did u got the answer for this.. PLease help me @gkonstandas – Babul Dec 11 '12 at 5:02
Not yet, I will post it here when i find it – gkonstandas Dec 11 '12 at 8:25

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.