It should be pretty easy to spot private API usage (assuming they test every part of your application). In the end its their implementation, you can't use it undetected.
They could have a #define PRIVATE_API_SEARCH and each method will have a #ifdef PRIVATE_API_SEARCH NSLog(@"PRIVATE API USAGE DETECTED <<<<<");
|