This is the post which i want to get from my app on facebook, but i am not able to add the message("This is my Message") under the url, i was able to post the url and title using the code below :

Here is my void method to post on Fb
-(void)fb_share
{
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) {
SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
SLComposeViewControllerCompletionHandler myBlock = ^(SLComposeViewControllerResult result){
if (result == SLComposeViewControllerResultCancelled) {
NSLog(@"Cancelled");
} else
{
NSLog(@"Done");
}
[controller dismissViewControllerAnimated:YES completion:Nil];
};
controller.completionHandler =myBlock;
[controller setInitialText:@"This is my title"];
[controller addURL:[NSURL URLWithString:@"http://www.pinterest.com"]];
// [controller addImage:[UIImage imageNamed:@"fb.png"]];
[self presentViewController:controller animated:YES completion:Nil];
}
else{
NSLog(@"UnAvailable");
}
}
This code me gives this result :

But i don't want the post to be like this, i want to give my own message under the url(Like "This is my Message"), plz can any one tell me how can i do that programatically.. Thank you in Advance
