Today I noticed that the code I used to display the FBDialog using the Facebook SDK, which shows a dialog with pre-filled text, no longer works. It just displays a dialog with an empty text box. The text I want to show is missing.
Has anyone else encountered a similar problem or is there a better way to pre-populate a text field with a string?
This is the code I use to call FBDialog:
NSString * message = @"Pre-filled Text"; NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: message, @"message", nil]; [facebook dialog:@"feed" andParams:params andDelegate:self];
source share