I am using the Facebook SDK in an iOS app. I log in by pulling in lists of friends, etc.
I added the code to send the request:
[FBWebDialogs presentRequestsDialogModallyWithSession:session message:@"Message" title:@"Title" parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) { // view cleanup here }];
A session is an FBSession stored in a class handling control. The options are suggestions , an array of friends to include. The problem described below occurs the same way if params is nil (in this case, the list shows all friends).
When I invoke a dialog, this is what appears:

Please note that the text "Message" is missing, as well as the entire block of messages shown on different pages of the documentation on Facebook, for example https://developers.facebook.com/docs/ios/ios-sdk-games/requests/ .
I use the Facebook SDK 3.7.1, the latest version of this publication. The screenshot above is a simulator using a Facebook Test User account. The same problems occur on the device using a βrealβ Facebook account.
source share