This file contains 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
/** | |
It prevents UIDevice.uniqueIdentifier method from returning real UDID vaue. | |
It is useful to prevent closed-source libralies to fetch users' UDIDs against | |
your will. | |
*/ | |
@interface UIDevice (UDIDkiller) | |
-(NSString*)uniqueIdentifier; | |
@end |
NewerOlder