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
- 属性
注釈
1 つの NSDictionary インスタンスには、アドレスのさまざまな部分を保持するディクショナリ キーと値を含む 1 つのアドレスが格納されます。
// 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>)