Skip to content

Instantly share code, notes, and snippets.

@masbog
Created August 3, 2013 19:58
Show Gist options
  • Select an option

  • Save masbog/6147774 to your computer and use it in GitHub Desktop.

Select an option

Save masbog/6147774 to your computer and use it in GitHub Desktop.
How to detect your paid iOS application was pirated by someone
NSBundle *bundle = [NSBundle mainBundle];
NSDictionary *info = [bundle infoDictionary];
if ([info objectForKey: @"SignerIdentity"] != nil)
{
/* do something do you want*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment