Compartir a través de


NSValueTransformer.CompletedInitialSyncNotification Propiedad

Definición

Constante de notificación para CompletedInitialSync

[Foundation.Advice("Use NSValueTransformer.Notifications.ObserveCompletedInitialSync helper method instead.")]
[Foundation.Field("NSUbiquitousUserDefaultsCompletedInitialSyncNotification", "Foundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 3, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString CompletedInitialSyncNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 3, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.CompletedInitialSyncNotification : Foundation.NSString

Valor de propiedad

La constante NSString se debe usar como token para NSNotificationCenter.

Atributos

Comentarios

Esta constante se puede usar con para NSNotificationCenter registrar un agente de escucha para esta notificación. Se trata de un NSString en lugar de una cadena, ya que estos valores se pueden usar como tokens en algunas bibliotecas nativas en lugar de usarse exclusivamente para su contenido de cadena real. El parámetro "notification" de la devolución de llamada contiene información adicional específica del tipo de notificación.

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        NSValueTransformer.CompletedInitialSyncNotification, (notification) => {Console.WriteLine ("Received the notification NSValueTransformer", notification); }


// Method style
void Callback (NSNotification notification)
{
    Console.WriteLine ("Received a notification NSValueTransformer", notification);
}

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (NSValueTransformer.CompletedInitialSyncNotification, Callback);
}

Se aplica a