From my iOS app, I want to open the Facebook application to make a post in the user wall. I want to give a predefined text to make the post, and I don't know how to add the text to the call.
NSString *post = [NSString stringWithFormat:@"fb://publish"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:post]];
How could I pass the text parameters with the "fb://publish/" option?

