I have done with FBConnect framework . I have an option to post link to facebook in my application that I'm developing currently. I would like to know is there a way to open an existing facebook application that is already installed in the iPhone with a message to post. As I browsed I came to know that we could open the app using the following.
NSURL *url = [NSURL URLWithString:@"fb://<insert function here>"];
[[UIApplication sharedApplication] openURL:url];
but this only open and i am not able to post my dynamic text or link. And also I have to come back to my application When facebook application is closed. Can any one help me regarding this ?