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 trying to use the new Social Framework to post a new post on Facebook.

[controller setInitialText:@".Thank's for help!"];
[controller addImage:[UIImage imageNamed:@"image.png"]];
[controller addURL:[NSURL URLWithString:@"http://stackoverflow.com/questions/ask"]];

No problem with these 3 lines of code. But when I try to eliminate addImage: I'm always receiving the same UIAlert:

enter image description here

My idea is to post an tipical URL on Facebook with an small text. But when I'm using the 3 lines of code, the new post is an image with a text = setInitialText: + addURL:

Any idea to solve the problem? It's a facebook problem or it's a framework problem?

Thank's

share|improve this question
have you tried to set [controller addImage:nil]; ? – Sarafaraz Babi Oct 18 '12 at 10:14
Yes. Same UIAlert. I already tried to set [controller removeAllImages] after [controller addImage:[UIImage imageNamed:@"image.png"]] and same problem with the UIAlert. – Gabriel.Massana Oct 18 '12 at 10:59

1 Answer

up vote 0 down vote accepted

Today, after some days not working I can send missage to Facebook without UIImage. Sounds like Facebook/Apple has been arranged the problem.

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.