다음을 통해 공유


ABPersonAddressKey 클래스

정의

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와 연결된 값을 나타냅니다.

적용 대상

추가 정보