I want to create a UUID, I have the code below that can create a UUID, how can I create a UDID with multiple providers of the same identifier in iOS7?
+ (NSString*) stringWithNewUUID { CFUUIDRef uuidObj = CFUUIDCreate(nil); NSString *newUUID = (NSString*)CFUUIDCreateString(nil, uuidObj); CFRelease(uuidObj); return newUUID; }
ios iphone ios7
Sandeep Khade 09 Oct '13 at 6:41 2013-10-09 06:41
source share