UIDevice-with-UniqueIdentifier-for-iOS-5
UIDevice-with-UniqueIdentifier-for-iOS-5 copied to clipboard
Brings back the unique identifier support under iOS 5, it uses the device's mac address in combination with the bundle identifier to generate a new hashed unique identifier.
iPhone 7.0 later return 02:00:00... all the time
Making UniqueIndentifier using the MAC ID not going to work on IOS 7. Need some other technique if possible.
Added a Static library target. Made demo project use it. Fixed possible low level leaks by using STL. Provided more types consistency by using C++ casts.
Hey, I've added 'Install app' button into your README file. Anyone could try your sample application right in browser. Look how it's working! To learn more, please look at: http://macbuildserver.com/github/opensource/
Fixed clang warnings. With std::vector you won't ever forget to free the memory.
Automatic Refence Counting
Haven't inspected the code in great detail, but how unique is this identifier really? MAC Addresses are [not unique](http://superuser.com/questions/268006/are-mac-addresses-unique-when-coming-out-of-the-factory). There is 16.7 million possible addresses per manufacturer. Given that Apple...
I understand that Apple are starting to restrict access to the MAC address too. Is this going to affect the functionality? If so, has anyone got any plans as to...