Skip to content

Instantly share code, notes, and snippets.

@rockstar
Created August 18, 2012 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rockstar/3387218 to your computer and use it in GitHub Desktop.
Save rockstar/3387218 to your computer and use it in GitHub Desktop.
Crash your iOS app on purpose
-(void)doTheThing {
switch (item) {
case firstCase:
...
break;
case secondCase:
...
break;
default:
NSLog(@"Unknown case %u", item);
kill(getpid(), SIGABRT);
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment