Created
August 3, 2013 19:58
-
-
Save masbog/6147774 to your computer and use it in GitHub Desktop.
How to detect your paid iOS application was pirated by someone
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
| 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