I'm dummy in iOS especially in private API.
I have application for testing and now I need to use private API (this application not for App Store).
I downloaded generated headers from iOS-Runtime-Headers and what next?
Under /System/Library/
I have list of libraries that contain Frameworks
, ... ,PrivateFrameworks
as well.
Do I need to replace original framework with ones I copied from iOS-Runtime-Headers
?
Because I have other applications that use Public API
only and I don't want to damage them.
From posted link they tell to validate library for example by:
NSBundle *b = [NSBundle
bundleWithPath:@"/System/Library/PrivateFrameworks/GAIA.framework"];
BOOL success = [b load];
But here the path points to original path.
Or I miss something,
Thank you