我是访问私有API的新手。
使用以下方法使用类中的方法。
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"]);
此“ FTDeviceSupport ”具有+ SharedInstance方法。
我想对CallHistory
类使用CallHistoryDBHandle
框架,因为没有任何sharedInstance,是否可以通过任何其他方式访问它?
请帮我 。感谢。