Поделиться через


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.

Применяется к

См. также раздел