I'm using the use inbuilt Facebook/Twitter API in iOS6 and trying to add an image to the Facebook post. The problem is that the uiimage in [fbController addImage:[UIImage imageNamed:@"logo.png"]]; is stretched and doesn't fit correctly. I've tried other images and the same thing happens.

thanks for any help here's my code:
- (IBAction)shareAction:(id)sender {
SLComposeViewController * fbController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[fbController setInitialText:@"SomeText"];
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
// output id of selected deal
NSLog(@"deal id for selected row is %@", [[displayItems objectAtIndex:indexPath.row] objectForKey:@"id"]);
// display the youdeal deal image
link = [[displayItems objectAtIndex:indexPath.row] objectForKey:@"link"];
[fbController addImage:[UIImage imageNamed:@"logo.png"]];
[fbController setInitialText:@"Check this out..."];
[fbController addURL:[NSURL URLWithString:link]];
SLComposeViewControllerCompletionHandler __block completionHandler=^(SLComposeViewControllerResult result){
[fbController dismissViewControllerAnimated:YES completion:nil];
switch(result){
case SLComposeViewControllerResultCancelled:
default:
{
NSLog(@"User Cancelled.");
}
break;
case SLComposeViewControllerResultDone:
{
NSLog(@"Posted");
}
break;
}};
[fbController setCompletionHandler:completionHandler];
[self presentViewController:fbController animated:YES completion:nil];
}