8 lines
274 B
Swift
8 lines
274 B
Swift
|
import Foundation
|
||
|
import AVKit
|
||
|
|
||
|
protocol RCTVideoPlayerViewControllerDelegate : NSObject {
|
||
|
func videoPlayerViewControllerWillDismiss(playerViewController:AVPlayerViewController)
|
||
|
func videoPlayerViewControllerDidDismiss(playerViewController:AVPlayerViewController)
|
||
|
}
|