ABPersonAddressKey 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
NSDictionary 주소에 ABPerson 사용할 키입니다.
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.None, "Use the 'Contacts' API instead.")]
public static class ABPersonAddressKey
type ABPersonAddressKey = class
- 상속
-
ABPersonAddressKey
- 특성
설명
단일 NSDictionary 인스턴스는 사전 키와 값이 주소의 다른 부분을 보유하는 단일 주소를 저장합니다.
// Address from: https://en.wikipedia.org/wiki/Address_(geography)#United_States
NSDictionary address = NSDictionary.FromObjectsAndKeys(
new NSObject[]{
new NSString("455 Larkspur Dr."),
new NSString("California Springs"),
new NSString("CA"),
new NSString("92926"),
new NSString("USA"),
new NSString("us"),
},
new NSObject[]{
ABPersonAddressKey.Street,
ABPersonAddressKey.City,
ABPersonAddressKey.State,
ABPersonAddressKey.Zip,
ABPersonAddressKey.Country,
ABPersonAddressKey.CountryCode,
}
);
ABMutableDictionaryMultiValue addresses = new ABMutableDictionaryMultiValue() {
{ address, ABLabel.Home },
};
ABPerson person = GetMeSomePerson();
person.SetAddresses(addresses);
속성
City |
상수 kABPersonAddressCityKey와 연결된 값을 나타냅니다. |
Country |
상수 kABPersonAddressCountryKey와 연결된 값을 나타냅니다. |
CountryCode |
상수 kABPersonAddressCountryCodeKey와 연결된 값을 나타냅니다. |
State |
상수 kABPersonAddressStateKey와 연결된 값을 나타냅니다. |
Street |
상수 kABPersonAddressStreetKey와 연결된 값을 나타냅니다. |
Zip |
상수 kABPersonAddressZIPKey와 연결된 값을 나타냅니다. |
적용 대상
추가 정보
- <xref:AddressBook.ABPerson.GetAddresses>
- SetAddresses(ABMultiValue<NSDictionary>)