Add new RCTVideoPlayerViewControllerDelegate protocol

This commit is contained in:
Stanisław Chmiela
2016-04-01 10:51:02 +02:00
parent 79fac2b2a9
commit c3b5a1b4cf
3 changed files with 18 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
//
// RCTVideoPlayerViewControllerDelegate.h
// RCTVideo
//
// Created by Stanisław Chmiela on 01.04.2016.
// Copyright © 2016 Facebook. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AVKit/AVKit.h"
@protocol RCTVideoPlayerViewControllerDelegate <NSObject>
- (void)videoPlayerViewControllerWillDismiss:(AVPlayerViewController *)playerViewController;
- (void)videoPlayerViewControllerDidDismiss:(AVPlayerViewController *)playerViewController;
@end