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.

please check my code:

Here i'm trying to upload screenshot to facebook album, but that doesnt works

CGImageRef screen = UIGetScreenImage();    
self.image = [UIImage imageWithCGImage:screen];
CGImageRelease(screen);

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               self.image, @"picture",
                               nil];

[self.facebook requestWithGraphPath:@"me/photos"
                      andParams:params
                  andHttpMethod:@"POST"
                    andDelegate:self];

self.image is ok, it is used in other parts of the code and everything looks nice. if i set up self.image for ex for [uiimage imagenamed@"example.png""] everything works nice. the different is that one uiimage exists on in memory and another both in memory and device.

what can bee wrong?

thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

solved. the problem was the wrong way of making a screenshot.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.