This is most likely very simple question and i have my own supposition about correct answer but i just can't verify if i'm right or not. So, in my leaderboard points are currently displayed like this 100Points
but i want it to be displayed like 100 points
. How do i insert space between 100
and points
?
Asked
Active
Viewed 215 times
0

Andrey Chernukha
- 21,488
- 17
- 97
- 161
-
do you have anything in "Score Format Suffix" field of Leaderboard Localization section? – Kreiri Mar 13 '13 at 15:36
-
i don't know. this is customer's iTunes connect account – Andrey Chernukha Mar 13 '13 at 16:12
2 Answers
1
This answer solved it for me: https://stackoverflow.com/a/18204051
Instead of writing "points" or " points", I wrote " points" as the suffix in iTunes Connect
0
Assuming as if you have created a custom leaderboard and have downloaded the scores:
If the leaderboard points are presented using NSString
's then could you just subtract the last six characters from the end to leave you with the score?
NSString *justScore = [rawScore substringToIndex:[rawScore length]-6];