Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

image stretched

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];

}

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.