I am new to accessing private API.
Using following way to use the methods inside the class.
NSBundle *b = [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/FTServices.framework"];
BOOL success = [b load];
Class FTDeviceSupport = NSClassFromString(@"FTDeviceSupport");
id si = [FTDeviceSupport valueForKey:@"sharedInstance"];
NSLog(@"-- %@", [si valueForKey:@"deviceColor"]);
This "FTDeviceSupport" is having +SharedInstance method.
I wanted to Use CallHistory
frameworks for the CallHistoryDBHandle
class, Which is not having any sharedInstance so, Is that possible to access that from any other way ?
Please help me . Thanks.