UIApplication.Notifications.ObserveDidFinishLaunching Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
ObserveDidFinishLaunching(EventHandler<UIApplicationLaunchEventArgs>) |
Строго типизированное уведомление для константы DidFinishLaunchingNotification . |
ObserveDidFinishLaunching(NSObject, EventHandler<UIApplicationLaunchEventArgs>) |
Строго типизированное уведомление для константы DidFinishLaunchingNotification . |
ObserveDidFinishLaunching(EventHandler<UIApplicationLaunchEventArgs>)
Строго типизированное уведомление для константы DidFinishLaunchingNotification .
public static Foundation.NSObject ObserveDidFinishLaunching (EventHandler<UIKit.UIApplicationLaunchEventArgs> handler);
static member ObserveDidFinishLaunching : EventHandler<UIKit.UIApplicationLaunchEventArgs> -> Foundation.NSObject
Параметры
- handler
- EventHandler<UIApplicationLaunchEventArgs>
Метод, вызываемый при публикации уведомления.
Возвращаемое значение
Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)
Комментарии
В следующем примере показано, как разработчики могут использовать этот метод в своем коде:
//
// Lambda style
//
// listening
notification = UIApplication.Notifications.ObserveDidFinishLaunching ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("Url", args.Url);
Console.WriteLine ("SourceApplication", args.SourceApplication);
Console.WriteLine ("RemoteNotifications", args.RemoteNotifications);
Console.WriteLine ("LocationLaunch", args.LocationLaunch);
});
// To stop listening:
notification.Dispose ();
//
//Method style
//
NSObject notification;
void Callback (object sender, UIKit.UIApplicationLaunchEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("Url", args.Url);
Console.WriteLine ("SourceApplication", args.SourceApplication);
Console.WriteLine ("RemoteNotifications", args.RemoteNotifications);
Console.WriteLine ("LocationLaunch", args.LocationLaunch);
}
void Setup ()
{
notification = UIApplication.Notifications.ObserveDidFinishLaunching (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
Применяется к
ObserveDidFinishLaunching(NSObject, EventHandler<UIApplicationLaunchEventArgs>)
Строго типизированное уведомление для константы DidFinishLaunchingNotification .
public static Foundation.NSObject ObserveDidFinishLaunching (Foundation.NSObject objectToObserve, EventHandler<UIKit.UIApplicationLaunchEventArgs> handler);
static member ObserveDidFinishLaunching : Foundation.NSObject * EventHandler<UIKit.UIApplicationLaunchEventArgs> -> Foundation.NSObject
Параметры
- objectToObserve
- NSObject
Объект для наблюдения.
- handler
- EventHandler<UIApplicationLaunchEventArgs>
Метод, вызываемый при публикации уведомления.
Возвращаемое значение
Объект токена, который можно использовать для прекращения получения уведомлений путем удаления или передачи в RemoveObservers(IEnumerable<NSObject>)
Комментарии
Этот метод можно использовать для подписки на DidFinishLaunchingNotification уведомления.
// Listen to all notifications posted for any object
var token = UIApplication.Notifications.ObserveDidFinishLaunching ((notification) => {
Console.WriteLine ("Observed DidFinishLaunchingNotification!");
};
// Listen to all notifications posted for a single object
var token = UIApplication.Notifications.ObserveDidFinishLaunching (objectToObserve, (notification) => {
Console.WriteLine ($"Observed DidFinishLaunchingNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();