I want to experiment with private APIs, more precisely, CoreTelephony private API,
And I understood that I need to use class-dump or class-dump-z to dump the private header files.
The thing is, that both class-dump and class-dump-z gives me an empty output with just the app's credits (actually class-dump-z dumped 2 header files, one is empty, the other just "include" the empty one).
I've been using the following flags on both of the above apps
-o ~/Desktop -H /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
As you see from the above location, I'm using iOS 8.0 (Don't know if it matters)
What am I doing wrong?
I Guess it is some sort of iOS8 SDK protection.
I've downloaded Xcode 5.1, extracted iOS7 SDK from there, and dumped the header files the same way, without any problems.