We have an app that's on iTunes, and it received a warning in iTunes that it uses undocumented api calls:
reateScreenIOSurface
IOSurfaceAcceleratorCreate
IOSurfaceAcceleratorTransferSurface
IOServiceGetMatchingService
IOMobileFramebufferOpen
IOMobileFramebufferGetLayerDefaultSurface
kIOMasterPortDefault
IOServiceMatching
IOObjectRelease
IOServiceClose
These are all from IOSurface api, which is for Mac OSX, however, I can't find any of those cals in our app. My guess is that one of the third party frameworks that we're using is the problem. The app has 3 frameworks that may use these apis: Aviary, Sincerely and Pritnzel.
Anyway, my question is, how can I find where (and if) these apis are really used?
I've used the nm -u
and otool -L
on the app binary, as well as on the 3 frameworks (and any other third party frameworks that the app uses), without any luck.
Many thanks