Share Post With Image Text And url To facebook

863 Views Asked by At

I am using share kit in my app and trying to post to facebook pose that include small photo, when clicked on facebook it will be opened to larger size like any other photo.

Link to the app on the app store and text about this post.

I am using this code:

    SHKItem *item;
NSURL *url = [NSURL URLWithString:@"http://itunes.apple.com/us/app/angry-birds/id343200656?mt=8"];
item = [SHKItem URL:url title:[NSString stringWithFormat:@"I'm playing someGame on my iPhone! My Highscore is %i, think you can beat it?", 1400]];    
[SHKFacebook shareItem:item];

What do I need to change to add photo to this post?

1

There are 1 best solutions below

1
On