UIImage.SpeakScreenStatusDidChangeNotification Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notification constant for SpeakScreenStatusDidChange
[Foundation.Advice("Use UIImage.Notifications.ObserveSpeakScreenStatusDidChange helper method instead.")]
[Foundation.Field("UIAccessibilitySpeakScreenStatusDidChangeNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString SpeakScreenStatusDidChangeNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 8, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.SpeakScreenStatusDidChangeNotification : Foundation.NSString
Property Value
NSString constant, should be used as a token to NSNotificationCenter.
- Attributes
Remarks
This constant can be used with the NSNotificationCenter to register a listener for this notification. This is an NSString instead of a string, because these values can be used as tokens in some native libraries instead of being used purely for their actual string content. The 'notification' parameter to the callback contains extra information that is specific to the notification type.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
UIImage.SpeakScreenStatusDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification UIImage", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification UIImage", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (UIImage.SpeakScreenStatusDidChangeNotification, Callback);
}
This can be used from a background thread.