Call log access possible in ios 8?

Can anyone tell me that call log access is possible in ios 8 or not? I want to access all call log in my application from my iphone. does anyone know about this?

+3


source to share


2 answers


I do not regret that it is still the same. Apps are still isolated and cannot read / write outside of their assigned container, so they cannot access information from another app if rejected for Apple's 2.6 validation process.

2.6 Apps that read or write data outside the specified container area will be rejected

As a side note, if you've worked on jailbreak devices, I believe the code from the accepted answer for here should work. The code below is copied from the 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 found a project on Github called SpyPhone that might be useful, but again I think these were only jailbreak devices.

+3


source


Not. Apple will not allow this type of feature.

If you are using this type of application. Apple will not approve your app.



You can only post to Broken Phones Jail via Cydia.

+2


source







All Articles