I need to send a different udid to my database for few testing purpose. Since [UIDevice currentDevice] uniqueIdentifier] is called in almost 15 places it will be very difficult for me to make a code change and then test. Is there a way to override that method for a while and send a another number as udid ?
override uniqueIdentifier method of ios
476 Views Asked by thndrkiss At
2
There are 2 best solutions below
0

You could create a category on UIDevice and override uniqueIdentifier to return a random value.
@interface UIDevice (RandomIdentifier)
@property (nonatomic, retain, readonly) NSString *uniqueIdentifier
@end
@implementation UIDevice (RandomIdentifier)
- (NSString *)uniqueIdentifier
{
return @"Randomly generated string";
}
@end
You should be able to override it in a category on UIDevice. Create a header like this:
And then a .m like this:
Don't forget to remove it again before releasing.