Skip to content

Instantly share code, notes, and snippets.

@taberh
Created July 23, 2012 01:19
Show Gist options
  • Save taberh/3161590 to your computer and use it in GitHub Desktop.
Save taberh/3161590 to your computer and use it in GitHub Desktop.
check jailbreak device for iPhone
BOOL isJailbreak()
{
int res = access("/var/mobile/Library/AddressBook/AddressBook.sqlitedb", F_OK);
if (res != 0)
return NO;
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment