Hi
I am using the following line to submit high scores to open feint for my game. However the parts in bold seem to be causing an issue:
This works fine:
But I want to have a UIAlert to show up saying either 'Successfully Submitted Score' or Failed to Submit Score' for example.
Any help would be much appreciated, thanks.
I am using the following line to submit high scores to open feint for my game. However the parts in bold seem to be causing an issue:
Code:
[OFHighScoreService setHighScore: score forLeaderboard:@"8539293" onSuccess:OFDelegate ([B]self, @selector(_scoreSubmitted)[/B]) onFailure:OFDelegate ([B]self, @selector(_scoreSubmittedFail)[/B])];
This works fine:
Code:
[OFHighScoreService setHighScore: score forLeaderboard:@"8539293" onSuccess:OFDelegate () onFailure:OFDelegate ()];
But I want to have a UIAlert to show up saying either 'Successfully Submitted Score' or Failed to Submit Score' for example.
Any help would be much appreciated, thanks.