Skip to main content

Posts

Showing posts with the label Fetch the contact Information

Fetch the contact information from the contact list

http://developer.apple.com/library/ios/#samplecode/QuickContacts/Introduction/Intro.html Get the email id :  ABMultiValueRef emails = (ABMultiValueRef) ABRecordCopyValue(person, kABPersonEmailProperty); NSString *emailID = (NSString *)ABMultiValueCopyValueAtIndex(emails, 0); First name :  (NSString *)ABRecordCopyValue(person, kABPersonFirstNameProperty);