I'm wondering what is the best (fastest and simplest) way to have a textfield auto complete with iPhone's address book contacts information.
Would access the address book each time a key is pressed fast enough ? Or do I have to load everything in my own local database (CoreData typically) ? Another way would be to load everything in memory at each app launch. Any experience regarding the access speed of the adress book ?
ADDED: I'd like to avoid having to load a local copy of the address book content because it's not only more code to write but you also need to sync your local copy when address book is modified.