I am using sharekit to share text on facebook, i want to add a picture near the text like in this photo :
Any idea how to do this? and is there other suitable library like sharekit ? Thanks.
I am using sharekit to share text on facebook, i want to add a picture near the text like in this photo :
Any idea how to do this? and is there other suitable library like sharekit ? Thanks.
Add an og:image meta tag to your head html block.
NSString *urlImage = @"some Image URL ";
[item setCustomValue:urlImage forKey:@"image"];
//item is shareitem
Should get what you wanted.