I'm making a simple memory game to learn more about iPhone programming and I am wondering how I should be storing constant information.
For example:
The probability of a certain color being more prominent.
The threshold that decides what constitutes a double touch event.
...
Data like this is internal game data that is unlikely to change.
Should I be putting these as constants in the ViewController
where they are used?
Should I #define
them?