UIView.AnnouncementDidFinishNotification Property

Definition

Notification constant for AnnouncementDidFinish

[Foundation.Advice("Use UIView.Notifications.ObserveAnnouncementDidFinish helper method instead.")]
[Foundation.Field("UIAccessibilityAnnouncementDidFinishNotification", "UIKit")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString AnnouncementDidFinishNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.AnnouncementDidFinishNotification : 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 (
    UIView.AnnouncementDidFinishNotification, (notification) => {
        Console.WriteLine ("Received the notification UIView", notification); 
    });


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (UIView.AnnouncementDidFinishNotification, Callback);
}

Applies to

See also