访问私有框架的类没有共享实例iOS

时间:2015-12-03 10:15:04

标签: ios iphone frameworks iphone-privateapi

我是访问私有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,是否可以通过任何其他方式访问它? 请帮我 。感谢。

0 个答案:

没有答案