I'm sending lives to other players using the FBSDKGameRequestDialog and want to find out if the user sent them or canceled the request. I've implemented the FBSDKGameRequestDialogDelegate but the methods are unreachable.
The code for the request is as follows:
FBSDKGameRequestDialog *dialog = [[FBSDKGameRequestDialog alloc] init]; dialog.delegate = self; dialog.content = gameRequestContent; dialog.frictionlessRequestsEnabled = YES; [dialog show]; Pretty basic tutorial dialog. From here on I have no feedback about the user actions.
Thanks in advance to anyone that can help me :)