up vote 8 down vote favorite
5
share [g+] share [fb]

I'm doing some research on the feasibility of an iPhone application, and can't find any indication in Apple's documentation that an iPhone app can read the call history of the phone, specifically the number/address book entry called, when, and the duration.

Does anyone know if this is possible, and how?

Note: The purpose is to remove the need for the user to perform this data-entry themselves. The application is for recording interactions with customer service centers.

link|improve this question

feedback

7 Answers

up vote 8 down vote accepted

Unfortunately you can't access the call history. The only User Data you have API access to is the address book. You can also access photos/pictures but only by starting an iPhone-controlled dialog that allows the user to choose a single image.

It's a bit sucky, hopefully this will be expanded in future versions.

link|improve this answer
1  
Hey @Andrew do you know this app works - itunes.apple.com/us/app/callog/id327883585?mt=8 – Saurabh Jun 10 '11 at 13:36
feedback

You can access call history on the Mac by sniffing around the iTunes directory. There are apps out there that do this.

link|improve this answer
feedback

Seems the only way is to read the log from the iTunes side but now from the phone:

http://arstechnica.com/apple/news/2007/11/iphonelogd-another-solution-for-viewing-your-iphone-call-log.ars

link|improve this answer
feedback

I did some reading in which states that you can access the call history on the iphone. It may be dated but worth a shot. Apparently the history is/was held in just a sqlite db on a table called call. The db is/was located at /private/var/mobile/library/CallHistory/call_history.db

If you use FMDB, you can simply do something like this.

FMResultSet *rs = [db executeQuery:@"Select * from Call"];

to get the call history

link|improve this answer
feedback

AFAIK you can't access call history. The address book is a database of contacts, not call information.

You can read more about the address book in the SDK's "Address Book Programming Guide for iPhone OS."

link|improve this answer
feedback

@Andrew says

Unfortunately you can't access the call history. The only User Data you have API access to is the address book.

But This application says it can do this. If there is an application that says it can reach and show you the detail of the call history I think there is a way.

I know this is not a real answer but it may add value to the search of answer.

And @schwa; can you name the apps that can access this info.

link|improve this answer
feedback

Why don't you try Calimits? I think its exactly what you looking for. http://itunes.apple.com/us/app/calimits/id472940083?mt=8 Zzz

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.