Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easy way to import AddressBook data into the iPhone Simulator?

Right now my only assumption is to manually modify the SQLite files found in the /Library/Application Support/iPhone Simulator/User/Library/AddressBook.

share|improve this question

3 Answers

up vote 28 down vote accepted

I was looking for the exact solution, and this worked perfectly for me on a non-jailbroken phone. It works by extracting your iPhone address book from an unencrypted backup.

  • Quit the iOS Simulator
  • Download iPhone/iPod Touch Backup Extractor
  • Run it, and select the last option "iOS Files"
  • Create a folder on your desktop and extract all files to that folder
  • When complete, go to your extract folder and navigate to Library/AddressBook
  • Copy both files (AddressBook.sqlitedb and AddressBookImages.sqlitedb) to: ~/Library/Application Support/iPhone Simulator/{SDK}/Library/AddressBook
  • Run the Contacts application in iOS Simulator
share|improve this answer
this doesn't work for me. – CW0007007 Nov 9 '12 at 14:40
this no longer works for me. – Ninja Dec 19 '12 at 1:56
plus me makes three it doesn't work for (using iOS 6.0 simulator) – mblackwell8 Dec 24 '12 at 4:38
1  
Works for me on 6.1 simulator. One note though: remove the -shm and -wal files in the simulator folder or the copied address book won't be used. – Nick Apr 6 at 18:43
1  
@ChrisTruman I didn't do anything special. Quit the simulator, go through all the steps here, start the simulator again, visit contacts app. – Nick Apr 9 at 22:10
show 1 more comment

or if your iPhone isn't jailbroken, you can extract the sqlite db from a backup using the shell script here: http://0xced.blogspot.com/2009/01/using-your-own-address-book-in-iphone.html

(note you'll need to change the simulator path it copies it to, as in the current SDK it's a bit different due to the addition of the OS version folder - easiest thing would be to just change it to your home directory and copy manually from there)

share|improve this answer

Right this is the only way i know with a "legit" iPhone

But if you have a jailbroken iPhone, you can download the iPhone AddressBook database with ssh, and replace the simulator one by the iphone one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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