Accessing the iPhone's Call log with the iPhone SDK

后端 未结 8 1902
一向
一向 2020-11-28 11:01

I am building application that required some data from iPhone\'s Call log(read only). The call log is a sqlite db located at \"/User/Library/CallHistory/call_history.db<

相关标签:
8条回答
  • 2020-11-28 11:17

    Yes, it is possible. This tutorial works: http://iosstuff.wordpress.com/2011/08/19/accessing-iphone-call-history/

    0 讨论(0)
  • 2020-11-28 11:21

    I would bet that PhoneView extracts the data from the iphone backup folder on the Mac.. the sqlite databases are stored there with predictable names.

    0 讨论(0)
  • 2020-11-28 11:23

    Honestly, how can you imagine they would let you access the whole Call log? How about you transmit it over the Internet once you have fetched it and make good use of this information?

    0 讨论(0)
  • 2020-11-28 11:26

    with the config utility and skd you can monitor when calls are placed, but cannot see to whom, ive been trying to get past the same issue, making progress but apple definetly made it so its private info, atleast who your calling,

    0 讨论(0)
  • 2020-11-28 11:29

    Keep in mind I have not tried any of this.

    Your logic appears to be that if you can access the Address Book db, why not the call log db? Well, the Address Book is exposed via published APIs - the call log is not. Consequently, I don't think it's so strange that you can't access its db file either.

    0 讨论(0)
  • 2020-11-28 11:29

    Applications are not meant to access anything out of their sandbox. The Address Book database is accessible because it's accessed by the public frameworks. Before firmware 2.1, applications did have read-only access out of their sandbox.

    0 讨论(0)
提交回复
热议问题