iPhone: How can I store a high score to disk.
- by Robert
I have a int which is my high score:
NSInterger highScore;
I want to store it persistently to disk
Do I have to convert it to a string, then write the string to a file, then parse it back when I want to read it. Or is there a better way to store small amounts of data?