dhaval shah
dhaval shah

Reputation: 4549

Access Recent Call List from native app in Swift App

I want to access the Recent Call list in My Swift app and matched the number that I have in My Code.

How can I do that?

Upvotes: 5

Views: 2350

Answers (1)

ipraba
ipraba

Reputation: 16543

No it cannot be done in a iOS app.

Technical Reason:

Recent call lists informations are stored in a sqlite db file deep inside the file structure and Apple prevents any access to that file outside your app sandbox.

You can fetch the contacts and its information by Contacts or Addressbook framework but not its call log related information.

Upvotes: 8

Related Questions