mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
27 lines
532 B
Objective-C
Executable File
27 lines
532 B
Objective-C
Executable File
//
|
|
// CBPlayerView.h
|
|
// CoubPlayer
|
|
//
|
|
// Created by Pavel Tikhonenko on 17/10/14.
|
|
// Copyright (c) 2014 Pavel Tikhonenko. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
#import "CBCoubPlayer.h"
|
|
#import "CBPlayerLayerView.h"
|
|
|
|
@interface CBPlayerView : UIView <CBCoubPlayerDelegate>
|
|
|
|
@property (nonatomic, readonly) UIImageView *preview;
|
|
@property (nonatomic, readonly) CBPlayerLayerView *videoPlayerView;
|
|
|
|
- (void)play;
|
|
- (void)stop;
|
|
|
|
@end
|
|
|
|
//@interface CBPlayerLayerView : UIView
|
|
//@end |