UIApplication.WillChangeStatusBarOrientationNotification Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Константа уведомления для WillChangeStatusBarOrientation
[Foundation.Advice("Use UIApplication.Notifications.ObserveWillChangeStatusBarOrientation helper method instead.")]
[Foundation.Field("UIApplicationWillChangeStatusBarOrientationNotification", "UIKit")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString WillChangeStatusBarOrientationNotification { [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.WillChangeStatusBarOrientationNotification : Foundation.NSString
Значение свойства
Константа NSString должна использоваться в качестве токена для NSNotificationCenter.
- Атрибуты
Комментарии
Эту константу можно использовать с для NSNotificationCenter регистрации прослушивателя для этого уведомления. Это NSString вместо строки, так как эти значения можно использовать в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строк. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.
Чтобы подписаться на это уведомление, разработчики могут использовать удобный UIApplication.Notificationsметод ,ObserveWillChangeStatusBarOrientation который предоставляет строго типизированный доступ к параметрам уведомления.
В следующем примере показано, как использовать строго типизированный класс Notifications, чтобы вывести догадки из доступных свойств в уведомлении:
//
// Lambda style
//
// listening
notification = UIApplication.Notifications.ObserveWillChangeStatusBarOrientation ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("StatusBarOrientation", args.StatusBarOrientation);
});
// To stop listening:
notification.Dispose ();
//
// Method style
//
NSObject notification;
void Callback (object sender, UIKit.UIStatusBarOrientationChangeEventArgs args)
{
// Access strongly typed args
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("StatusBarOrientation", args.StatusBarOrientation);
}
void Setup ()
{
notification = UIApplication.Notifications.ObserveWillChangeStatusBarOrientation (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
В следующем примере показано, как использовать уведомление с API DefaultCenter:
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIApplication.WillChangeStatusBarOrientationNotification, (notification) => {Console.WriteLine ("Received the notification UIApplication", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIApplication", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIApplication.WillChangeStatusBarOrientationNotification, Callback);
}