This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @interface DJPAppDelegate : UIResponder <UIApplicationDelegate, UIAppearanceContainer> | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Return a random integer number between low and high inclusive */ | |
| int randomInt(int low, int high) | |
| { | |
| return (arc4random() % (high-low+1)) + low; | |
| } | |
| /* Return a random BOOL value */ | |
| BOOL randomBool() | |
| { | |
| return (BOOL)randomInt(0, 1); |
NewerOlder