Skip to content

Instantly share code, notes, and snippets.

@IvanovDeveloper
Created July 20, 2016 07:59
Show Gist options
  • Save IvanovDeveloper/cfa7638b5686f24230ac7709e3b9477c to your computer and use it in GitHub Desktop.
Save IvanovDeveloper/cfa7638b5686f24230ac7709e3b9477c to your computer and use it in GitHub Desktop.
//objective-c
-//random bool
srand(time(0));
int randomval = rand() % 2;
apiCall.shouldFailToLoad = (BOOL)randomval;
NSLog(@"Should fail to load:%d", apiCall.shouldFailToLoad);
-//random integer
arc4random_uniform(upper_bound)
//swift
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment