|
//
// TPMovieControls.h
// ThePaperBase
//
// Created by zhousan on 16/1/5.
// Copyright © 2016年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ALAirplayView.h"
#import "ALButton.h"
@protocol TPMovieControlsDelegate <NSObject>
- (void)valueChange:(CGFloat)value;
@end
@interface TPMovieControls : UIView
@property (nonatomic, strong) UISlider *durationSlider;
@property (nonatomic, strong) UIButton *cutPhotoBtn;
@property (nonatomic, strong) NSTimer *durationTimer;
@property(nonatomic, weak)id<TPMovieControlsDelegate> delegate;
@property (nonatomic, strong) UIView *activityBackgroundView;
@property (nonatomic, strong) UIActivityIndicatorView *activityIndicator;
@property (nonatomic, strong) MPVolumeView *volumeView;
@property (nonatomic, strong) ALAirplayView *airplayView;
@property (nonatomic, strong) UILabel *timeElapsedLabel;
@property (nonatomic, strong) UILabel *timeRemainingLabel;
@end
|