In my app I need to get a bunch of contact details, I can successfully get things like first and last name like so:
NSString *firstName = (__bridge NSString *)ABRecordCopyValue(person, kABPersonFirstNameProperty);
However I can't get any phone numbers of address details like this, any help in doing would be much appreciated, thanks.