Search code examples
iosfacebooksharekit

Add a default sentence while sharing an image on Facebook


Does anyone know how to set a default sentence when the user shares something on his wall? Im not asking about the the user's text. I'm asking how to show the tagline "... took a photo with ...".

took a photo with instagram


Solution

  • Refer this link.

    UIImage *image = [UIImage imageNamed:@"Image.jpg"]; // You Image that u want to share
    SHKItem *item = [SHKItem image:image title:@"XXX : took a photo with Instagram"];
    [SHKFacebook shareItem:item];
    

    Hope it worked for You.