How long do vendors and advertising identifiers replace iPhone UDIDs?

I know that a UDID is 40 characters long. Apple now prohibits their use and replaces them with vendors and advertising identifiers for the iPhone.

I need to replace them in the database, but I can not find their length. How long are these new identifiers?

+5
source share
1 answer

New identifiers (forVendor identifier and advertIdentifier) ​​36 characters long.

The previous method, uniqueIdentifier, returns NSString, while both new methods return the type NSUUID. This class conforms to standard UUID definitions and lasts 32 characters with four dashes.

Universal Unique Identifier - Definition

UUID , NSUUID , .

+8

All Articles