MPMoviePlayerController.WillEnterFullscreenNotification プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
WillEnterFullscreen の通知定数
[Foundation.Advice("Use MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen helper method instead.")]
[Foundation.Field("MPMoviePlayerWillEnterFullscreenNotification", "MediaPlayer")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, "Use 'AVPlayerViewController' (AVKit) instead.")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSString WillEnterFullscreenNotification { [ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, "Use 'AVPlayerViewController' (AVKit) instead.")] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.WillEnterFullscreenNotification : Foundation.NSString
プロパティ値
NSString 定数は、NSNotificationCenter のトークンとして使用する必要があります。
- 属性
注釈
この定数を と共 NSNotificationCenter に使用して、この通知のリスナーを登録できます。 これらの値は、実際の文字列コンテンツに対して純粋に使用されるのではなく、一部のネイティブ ライブラリでトークンとして使用できるため、これは文字列ではなく NSString です。 コールバックの 'notification' パラメーターには、通知の種類に固有の追加情報が含まれています。
この通知をサブスクライブするために、開発者は便利 MPMoviePlayerController.Notificationsな メソッド をObserveWillEnterFullscreen 使用できます。このメソッドは、通知のパラメーターへの厳密に型指定されたアクセスを提供します。
次の例は、厳密に型指定された Notifications クラスを使用して、通知で使用可能なプロパティから推測を取り出す方法を示しています。
//
// Lambda style
//
// listening
notification = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen ((sender, args) => {
/* Access strongly typed args */
Console.WriteLine ("Notification: {0}", args.Notification);
Console.WriteLine ("AnimationDuration", args.AnimationDuration);
Console.WriteLine ("AnimationCurve", args.AnimationCurve);
});
// 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);
Console.WriteLine ("AnimationDuration", args.AnimationDuration);
Console.WriteLine ("AnimationCurve", args.AnimationCurve);
}
void Setup ()
{
notification = MPMoviePlayerController.Notifications.ObserveWillEnterFullscreen (Callback);
}
void Teardown ()
{
notification.Dispose ();
}
次の例は、DefaultCenter API で通知を使用する方法を示しています。
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
MPMoviePlayerController.WillEnterFullscreenNotification, (notification) => {Console.WriteLine ("Received the notification MPMoviePlayerController", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification MPMoviePlayerController", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (MPMoviePlayerController.WillEnterFullscreenNotification, Callback);
}