Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call Log access Possible in ios 8?

Tags:

ios

iphone

Can any one say me call log access will be possible in ios 8 or not ? i want to access all call log in my application from my iphone. any one know about this ?

like image 885
Rushik Thumar Avatar asked Feb 02 '26 14:02

Rushik Thumar


1 Answers

No sorry this still remains as before. Apps are still sandboxed and can't read/write outside of their designated container, so they can't access information from another application if it does it will be rejected for 2.6 of the Apple review process.

2.6 Apps that read or write data outside its designated container area will be rejected

As a side note if you were working on jailbroken devices I believe the code from the accepted answer on here should work. Code below copied from link

BOOL callhistoryfileexist = FALSE;

NSFileManager *fileManager = [NSFileManager defaultManager];

callhistoryfileexist = [fileManager fileExistsAtPath:@"/private/var/wireless/Library/CallHistory/call_history.db"];

[fileManager release];

if(callhistoryfileexist) {
   //copy it where you want it
}

I also just found a project on Github called SpyPhone that might be helpful but again I think this would be jailbroken devices only.

like image 81
Popeye Avatar answered Feb 05 '26 02:02

Popeye



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!