본문 바로가기
프로그래밍 놀이터/iOS

[iOS] 연락처 property constant 정리

by 돼지왕 왕돼지 2017. 6. 24.
반응형

 [iOS] 연락처 property constant 정리


https://developer.apple.com/library/ios/documentation/AddressBook/Reference/ABPersonRef_iPhoneOS/index.html#//apple_ref/doc/constant_group/Personal_Information_Properties


ABPropertyID, CFStringRef, const, IOS, kABPersonAddressCityKey, kABPersonAddressCountryCodeKey, kABPersonAddressCountryKey, kABPersonAddressProperty, kABPersonAddressStateKey, kABPersonAddressStreetKey, kABPersonAddressZIPKey, kABPersonAnniversaryLabel, kABPersonAssistantLabel, kABPersonBirthdayProperty, kABPersonBrotherLabel, kABPersonChildLabel, kABPersonCreationDateProperty, kABPersonDateProperty, kABPersonDepartmentProperty, kABPersonEmailProperty, kABPersonFatherLabel, kABPersonFirstNamePhoneticProperty, kABPersonFirstNameProperty, kABPersonFriendLabel, kABPersonHomePageLabel, kABPersonJobTitleProperty, kABPersonKindOrganization, kABPersonKindPerson, kABPersonKindProperty, kABPersonLastNamePhoneticProperty, kABPersonLastNameProperty, kABPersonManagerLabel, kABPersonMiddleNamePhoneticProperty, kABPersonMiddleNameProperty, kABPersonModificationDateProperty, kABPersonMotherLabel, kABPersonNicknameProperty, kABPersonNoteProperty, kABPersonOrganizationProperty, kABPersonParentLabel, kABPersonPartnerLabel, kABPersonPhoneHomeFAXLabel, kABPersonPhoneIPhoneLabel, kABPersonPhoneMainLabel, kABPersonPhoneMobileLabel, kABPersonPhoneOtherFAXLabel, kABPersonPhonePagerLabel, kABPersonPhoneProperty, kABPersonPhoneWorkFAXLabel, kABPersonPrefixProperty, kABPersonRelatedNamesProperty, kABPersonSisterLabel, kABPersonSpouseLabel, kABPersonSuffixProperty, kABPersonURLProperty, [iOS] 연락처 property constant 정리


Personal Information Property


const ABPropertyID kABPersonFirstNameProperty;

const ABPropertyID kABPersonLastNameProperty;

const ABPropertyID kABPersonMiddleNameProperty;

const ABPropertyID kABPersonPrefixProperty;

const ABPropertyID kABPersonSuffixProperty;

const ABPropertyID kABPersonNicknameProperty;

const ABPropertyID kABPersonFirstNamePhoneticProperty;

const ABPropertyID kABPersonLastNamePhoneticProperty;

const ABPropertyID kABPersonMiddleNamePhoneticProperty;

const ABPropertyID kABPersonOrganizationProperty;

const ABPropertyID kABPersonJobTitleProperty;

const ABPropertyID kABPersonDepartmentProperty;

const ABPropertyID kABPersonEmailProperty;

const ABPropertyID kABPersonBirthdayProperty;

const ABPropertyID kABPersonNoteProperty;

const ABPropertyID kABPersonCreationDateProperty;

const ABPropertyID kABPersonModificationDateProperty;




Address Property


const ABPropertyID kABPersonAddressProperty;

const CFStringRef kABPersonAddressStreetKey;

const CFStringRef kABPersonAddressCityKey;

const CFStringRef kABPersonAddressStateKey;

const CFStringRef kABPersonAddressZIPKey;

const CFStringRef kABPersonAddressCountryKey;

const CFStringRef kABPersonAddressCountryCodeKey;




Phone Number Property


const ABPropertyID kABPersonPhoneProperty;

const CFStringRef kABPersonPhoneMobileLabel;

const CFStringRef kABPersonPhoneIPhoneLabel;

const CFStringRef kABPersonPhoneMainLabel;

const CFStringRef kABPersonPhoneHomeFAXLabel;

const CFStringRef kABPersonPhoneWorkFAXLabel;

const CFStringRef kABPersonPhoneOtherFAXLabel;

const CFStringRef kABPersonPhonePagerLabel;




Date Property


const ABPropertyID kABPersonDateProperty;

const CFStringRef kABPersonAnniversaryLabel;




Person Property


const ABPropertyID kABPersonKindProperty;

const CFNumberRef kABPersonKindPerson;

const CFNumberRef kABPersonKindOrganization;




URL Property


const ABPropertyID kABPersonURLProperty;

const CFStringRef kABPersonHomePageLabel;




Related Name Property


const ABPropertyID kABPersonRelatedNamesProperty;

const CFStringRef kABPersonMotherLabel;

const CFStringRef kABPersonFatherLabel;

const CFStringRef kABPersonParentLabel;

const CFStringRef kABPersonSisterLabel;

const CFStringRef kABPersonBrotherLabel;

const CFStringRef kABPersonChildLabel;

const CFStringRef kABPersonFriendLabel;

const CFStringRef kABPersonSpouseLabel;

const CFStringRef kABPersonPartnerLabel;

const CFStringRef kABPersonManagerLabel;

const CFStringRef kABPersonAssistantLabel;




반응형

댓글