Today I noticed that the code I have been using to display a FBDialog using the Facebook SDK, which shows a Dialog with a pre-filled Text isn’t working anymore. It is just showing the dialog with an empty textfield. The text I want to show is missing.
Has anyone else encountered a similar problem, or is there a better way to pre-fill the textfield with a string?
This is the code I use to call the FBDialog:
NSString * message = @"Pre-filled Text";
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: message, @"message", nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
This is intended behaviour. https://developers.facebook.com/docs/reference/dialogs/feed/