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 would like to share somethin from my iOS application to user's Facebook wall. I'm able to present the official login webview but I was wondering how to present this kind of view after the user has been logged successfully ...

enter image description here

share|improve this question

1 Answer

up vote 0 down vote accepted

After you create a Facebook instance let call it _facebook. You call following method

NSMutableDictionary paramters = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"<app id>", @"app_id", @"http://...", @"picture", nil];

[_facebook dialog:@"feed" andParams:parameters andDelegate:self];

parameters can be found here:

https://developers.facebook.com/docs/reference/dialogs/feed/

share|improve this answer
Thanks you it works! – Pierre Jul 31 '12 at 10:33

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.