I'm having problems posting a message to users walls. As soon as the view that allows the user to add a comment appears it disappears again and I have no idea why. You literally see a while view expand and contract again. The only time it remained onscreen was when I posted a message from the fbDidLogin method.
Here is the code I use to create the post:
Code:
// Create the post
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Some Title", @"name",
@"The must-have iPhone/iPad app", @"caption",
@"Desc.", @"description",
@"http://www.google.com", @"link",
kSomeImageURL, @"picture",
nil];
// Post it to the users feed
[facebook dialog:@"feed" andParams:params andDelegate:nil];
Please can someone help me out?