To do this, I would suggest using Sharekit. ShareKit is a free api that allows you to intregrate many sharing feastures for many services, with minimal code (less than 20 lines).
Here is a link to get ShareKit: getsharekit.com
To share a photo on Facebook with Sharekit, do this:
- Add sharekit to your project by coping the files found at the link above
Use the following code to set up the share instance:
UIImage *image = [UIImage imageNamed:@"someImage.jpg"];
SHKItem *item = [SHKItem image:image title:@"Look at this picture!"];
Then just share the image with this:
[SHKFacebook shareItem:item];
However, the newest Facebook API is actually pretty easy to use. And it's very well documented, so you might want to check it out. There are some benefits to using Facebook's actually API, rather then use a proxy service.