During researching of the PrivateFrameworks that are available at iOS 9 i found interesting library that could give access to the call history of the jailbreak iPhone. The question is how to use this framework?
Brief example of my :
NSBundle *b = [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/CallHistory.framework"];
BOOL success = [b load];
if (success) {
Class CallHistoryDBHandle = NSClassFromString(@"CallHistoryDBClientHandle");
SEL theSelector = NSSelectorFromString(@"fetchAllNoLimit");
id si = [CallHistoryDBHandle valueForKey:@"createForClient"];
NSLog(@"-- %@", [si performSelector:theSelector]);
} else {
NSLog(@"NO");
}