Поделиться через


AVPlayerItem.NewAccessLogEntryNotification Свойство

Определение

Константа уведомлений для NewAccessLogEntry

[Foundation.Advice("Use AVPlayerItem.Notifications.ObserveNewAccessLogEntry helper method instead.")]
[Foundation.Field("AVPlayerItemNewAccessLogEntryNotification", "AVFoundation")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 9, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString NewAccessLogEntryNotification { [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 9, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.NewAccessLogEntryNotification : Foundation.NSString

Значение свойства

Константа NSString должна использоваться в качестве маркера для NSNotificationCenter.

Атрибуты

Комментарии

Эту константу можно использовать с для NSNotificationCenter регистрации прослушивателя для этого уведомления. Это NSString вместо строки, так как эти значения могут использоваться в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строки. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.

Если вы хотите подписаться на это уведомление, можно использовать удобный AVPlayerItem.Notificationsметод .ObserveNewAccessLogEntry , который предоставляет строго типизированный доступ к параметрам уведомления.

В следующем примере показано, как использовать строго типизированный класс Notifications, чтобы вывести догадки из доступных свойств в уведомлении:

//
// Lambda style
//

// listening
notification = AVPlayerItem.Notifications.ObserveNewAccessLogEntry ((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 = AVPlayerItem.Notifications.ObserveNewAccessLogEntry (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

В следующем примере показано, как использовать уведомление с API DefaultCenter:

// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
        AVPlayerItem.NewAccessLogEntryNotification, (notification) => {Console.WriteLine ("Received the notification AVPlayerItem", notification); }


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

void Setup ()
{
    NSNotificationCenter.DefaultCenter.AddObserver (AVPlayerItem.NewAccessLogEntryNotification, Callback);
}

Применяется к