Is there any method to tell the user that his score submitted successfully or just use an alert view.
I mean something like the Game Center welcome message: “Welcome Back, user”
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Game Center score submission implements a block callback which you can use to handle errors or successful submission. This is a function copied directly from the developer documentation:
In terms of the user interface, like the sliding “welcome back” view, you’ll have to make your own user interface for that. (I just use
UIAlertview, but that’s totally up to you.)