Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have already searched many places many people have used ABAddressBookRef class but my xcode 4 does not recognize this i have imported and i have added the library/framework too but still the code was not recognized please help me in finding some working functions/classes/APIs which i call and they do there task THANK YOU EVERYONE

share|improve this question

3 Answers

The AddressBook API should do what you need. Use the IBAction or gesture link to the button to present it.

share|improve this answer

You will have to use AddressBook framework, first add the refrence to the framework,

Then import AddressBook.h in your class

#import "AddressBook/AddressBook.h"

Then start using ABAddressBookRef

ABAddressBookRef ref;

share|improve this answer
i have added it brother – Asad Ullah Jul 1 '12 at 16:08

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.