ABPersonInstantMessageKey Classe

Definizione

NSDictionary chiavi da usare con ABPerson i servizi di messaggistica istantanea.

[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.None, "Use the 'Contacts' API instead.")]
public static class ABPersonInstantMessageKey
type ABPersonInstantMessageKey = class
Ereditarietà
ABPersonInstantMessageKey
Attributi

Commenti

Una singola NSDictionary istanza archivia le informazioni relative a un singolo servizio di messaggistica istantanea, con le chiavi del dizionario e i valori che contengono informazioni su parti diverse del servizio di messaggistica istantanea.

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);

Proprietà

Service

Rappresenta il valore associato alla costante kABPersonInstantMessageServiceKey

Username

Rappresenta il valore associato alla costante kABPersonInstantMessageUsernameKey

Si applica a

Vedi anche