UIDevice.BatteryStateDidChangeNotification Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Constante de notificação para BatteryStateDidChange
[Foundation.Advice("Use UIDevice.Notifications.ObserveBatteryStateDidChange helper method instead.")]
[Foundation.Field("UIDeviceBatteryStateDidChangeNotification", "UIKit")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString BatteryStateDidChangeNotification { [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.BatteryStateDidChangeNotification : Foundation.NSString
Valor da propriedade
Constante NSString, deve ser usada como um token para NSNotificationCenter.
- Atributos
Comentários
Essa constante pode ser usada com o NSNotificationCenter para registrar um ouvinte para essa notificação. Esse é um NSString em vez de uma cadeia de caracteres, pois esses valores podem ser usados como tokens em algumas bibliotecas nativas em vez de serem usados puramente para seu conteúdo de cadeia de caracteres real. O parâmetro 'notification' para o retorno de chamada contém informações extras específicas para o tipo de notificação.
Se você quiser assinar essa notificação, poderá usar o método .ObserveBatteryStateDidChange de conveniência UIDevice.Notificationsque oferece acesso fortemente tipado aos parâmetros da notificação.
O exemplo a seguir mostra como usar a classe Notifications fortemente tipada para tirar a adivinhação das propriedades disponíveis na notificação:
//
// Lambda style
//
// listening
notification = UIDevice.Notifications.ObserveBatteryStateDidChange ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
});
// To stop listening:
notification.Dispose ();
//
// Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
}
void Setup ()
{
notification = UIDevice.Notifications.ObserveBatteryStateDidChange (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
O exemplo a seguir mostra como usar a notificação com a API DefaultCenter:
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIDevice.BatteryStateDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification UIDevice", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIDevice", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIDevice.BatteryStateDidChangeNotification, Callback);
}
Isso pode ser usado de um thread em segundo plano.