0

I can modify or create a new person in my address book, but I can't find how to add a property for the phone work number.

According to the Apple Documentation there is no property kABPersonPhoneWorkLabel. There is the work fax number (kABPersonPhoneWorkFAXLabel), but not phone work.

How can I do this?

PeeHaa
  • 71,436
  • 58
  • 190
  • 262
Tom-pouce
  • 758
  • 2
  • 11
  • 28

1 Answers1

1

Try this ones:

const CFStringRef kABWorkLabel;
const CFStringRef kABHomeLabel;
const CFStringRef kABOtherLabel;

They are at the bottom of the document you linked, at Generic Property Labels

For some reasons they are separated from the other labels.

Antonio MG
  • 20,382
  • 3
  • 43
  • 62