ABPersonInstantMessageKey クラス

定義

NSDictionary インスタント メッセージ サービスで ABPerson 使用するためのキー。

[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.None, "Use the 'Contacts' API instead.")]
public static class ABPersonInstantMessageKey
type ABPersonInstantMessageKey = class
継承
ABPersonInstantMessageKey
属性

注釈

1 つの NSDictionary インスタンスは、1 つのインスタント メッセージ サービスに関する情報を格納し、ディクショナリ キーと値はインスタント メッセージ サービスのさまざまな部分に関する情報を保持します。

NSDictionary instantMessage = NSDictionary.FromObjectsAndKeys(
    new NSObject[]{
        ABPersonInstantMessageService.Jabber,
        new NSString ("user@example.org"),
    },
    new NSObject[]{
        ABPersonInstantMessageKey.Service,
        ABPersonInstantMessageKey.Username,
    }
);
ABMutableDictionaryMultiValue instantMessages = new ABMutableDictionaryMultiValue() {
    { address, ABLabel.Home },
};
ABPerson person = GetMeSomePerson();
person.SetInstantMessages(addresses);

プロパティ

Service

定数 kABPersonInstantMessageServiceKey に関連付けられている値を表します。

Username

定数 kABPersonInstantMessageUsernameKey に関連付けられている値を表します。

適用対象

こちらもご覧ください