I am using FBConnect in myapplication, and following is the code for share some message on FB
NSMutableDictionary *params =
[NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Testing Feed Dialog", @"name",
@"Feed Dialogs are Awesome.", @"caption",
@"Check out how to use Facebook Dialogs.", @"description",
@"http://www.example.com/response", @"link",
@"http://fbrell.com/f8.jpg", @"picture",
nil];
[facebook dialog:@"feed"
andParams:params
andDelegate:self];
and i am getting the feed dialog like

This is working fine but I need to customize this window i.e it should have two options "share on own wall" and "share on friend's wall" instead a default share option posting on user own wall. Please Help me out