How to detect if any external libraries are calling [UIDevice currentDevice] uniqueIdentifier]?
So, since Apple is now rejecting apps that access UDID , on our company's current project, we need to eliminate all APIs that make a call to this property: [[UIDevice currentDevice] uniqueIdentifier] We have eliminated all the calls in our own code, but need to be sure that the many external libraries we are using are not making calls to this property. What is the most reliable method for determining if a library is calling on this property? Thank you in advance! Aside from using otx (which seems to have gotten flaky) one option is to set a symbolic breakpoint on that method and then run the