add image and description on facebook with sharekit
问题 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. 回答1: Add an og:image meta tag to your head html block. http://developers.facebook.com/docs/reference/plugins/like/ 回答2: NSString *urlImage = @"some Image URL "; [item setCustomValue:urlImage forKey:@"image"]; //item is shareitem Should get what you wanted. 来源: https://stackoverflow.com/questions/6542050