Access iOS Magazine to access Avi

I know that the same questions were asked several times over stackoverflow and in other forms, but none of them helped me get a direct answer.

I want to access the iOS device call log in my application. I have a lot of R&D and found some messages here also on stackoverflow, but none of them have a clear vision that if we can do this or not, or if we can make some kind of connector for receiving the call log, like described in this link: iPhone Call Log / History

I'm still not sure if we can do this, but when I look into this application: https://itunes.apple.com/in/app/truecaller-number-search-spam/id448142450?mt=8

It seems that they managed to get call history in their application and set them up as well.

Also check out this app: https://itunes.apple.com/us/app/callog/id327883585?mt=8

Also, if the application can run as a service in the background all the time, and the apple will accept it in the appstore?

Any help / feasibility would be appreciated.

+7
ios xcode
source share
1 answer

Unable to retrieve call log programmatically.

First of all, Apple does not officially provide a public API for accessing the call log. This means that you can hack everything you want to access the call log (using private APIs), but when you submit the application to Apple, you are sure that it will be rejected.

Regarding the application you mentioned (quickRemainder)

It gets call log using cvs file or text file. It does not accept information through a calllog db device.

Retrieve the application description.

You can import text or cvs files containing phone calls into this application.

TrueCaller does not receive the call log, it simply uses the application to search for contacts and update contacts with the information they received. They do not read canons

Update: Apple has implemented an infrastructure called Callkit. Although you cannot access the entire call log, you can have some control over calls like

Incoming Call Identification

Call blocking etc.

https://developer.apple.com/reference/callkit

+7
source share

All Articles