mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-30 12:33:57 -04:00
18 lines
840 B
Objective-C
18 lines
840 B
Objective-C
#import "GIMMe.h"
|
|
#import "YTSingleVideoController.h"
|
|
|
|
@interface YTPlayerPIPController : NSObject
|
|
@property (nonatomic, readonly, assign, getter=isPictureInPictureActive) BOOL pictureInPuctureActive;
|
|
@property (nonatomic, readonly, assign, getter=isPictureInPicturePossible) BOOL pictureInPucturePossible;
|
|
@property (retain, nonatomic) YTSingleVideoController *activeSingleVideo;
|
|
- (instancetype)initWithPlayerView:(id)playerView delegate:(id)delegate; // Deprecated, use initWithDelegate:
|
|
- (instancetype)initWithDelegate:(id)delegate;
|
|
- (GIMMe *)gimme; // Deprecated
|
|
- (BOOL)canInvokePictureInPicture; // Deprecated, use canEnablePictureInPicture
|
|
- (BOOL)canEnablePictureInPicture;
|
|
- (void)maybeInvokePictureInPicture; // Deprecated, use maybeEnablePictureInPicture
|
|
- (void)maybeEnablePictureInPicture;
|
|
- (void)play;
|
|
- (void)pause;
|
|
@end
|