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 want to get all the iPhone contacts in my iphone application.Is it possible?If so how?Anybody please help me.

share|improve this question
Hii... If my ans is correct then u can mark it as a correct ans. – Stack Apr 11 '12 at 16:24
Check this it may help you.. stackoverflow.com/questions/10174889/… – RayofHope Jun 5 '12 at 9:13

2 Answers

Apple has a programming guide for the address book framework:

Address Book Programming Guide for iOS

Reference:

share|improve this answer
My requirement is to get the contact list in an array in the application. – Priya Jul 13 '11 at 6:44
Hello Priya, See my updated Ans. I have add new two links at start point in Reference section. – Stack Jul 13 '11 at 6:48
what are the required frameworks and how to add frameworks in xcode 4? – Priya Jul 13 '11 at 7:11
ABAddressBookRef ab = ABAddressBookCreate(); NSMutableArray *retVal = [(NSMutableArray *)ABAddressBookCopyArrayOfAllPeople(ab) autorelease]; CFRelease(ab); NSLog(@"hhjfdfdsbdfdskj"); NSLog(@"%@",retVal); Is this is enough for getting contacts? – Priya Jul 13 '11 at 7:28
Its store the data in to NSDictionary. Can we talk on any other messenger more help? – Stack Jul 13 '11 at 7:30
show 1 more comment

Take a look at: Address Book Programming Guide for iOS

If you dig further down into the site you will also see the Tutorial:

Quick Start Tutorial

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.