MPMusicPlayerControllerQueue.DidChangeNotification 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
DidChange 的通知常數
[Foundation.Advice("Use MPMusicPlayerControllerQueue.Notifications.ObserveDidChange helper method instead.")]
[Foundation.Field("MPMusicPlayerControllerQueueDidChangeNotification", "MediaPlayer")]
public static Foundation.NSString DidChangeNotification { get; }
member this.DidChangeNotification : Foundation.NSString
屬性值
NSString 常數應作為 NSNotificationCenter 的權杖使用。
- 屬性
備註
這個常數可以搭配 使用 NSNotificationCenter 來註冊此通知的接聽程式,而開發人員也可以改用強型別通知 ObserveDidChange 。 這是 NSString 而不是字串,因為這些值可以當做某些原生程式庫中的標記使用,而不是單純用於其實際字串內容。 回呼的 'notification' 參數包含通知類型特有的額外資訊。
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
MPMusicPlayerControllerQueue.DidChangeNotification, (notification) => {Console.WriteLine ("Received the notification MPMusicPlayerControllerQueue", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification MPMusicPlayerControllerQueue", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (MPMusicPlayerControllerQueue.DidChangeNotification, Callback);
}