ZXVideoPlayerControlView.m
15.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
//
// ZXVideoPlayerControlView.m
// ZXVideoPlayer
//
// Created by Shawn on 16/4/21.
// Copyright © 2016年 Shawn. All rights reserved.
//
#import "ZXVideoPlayerControlView.h"
static const CGFloat kVideoControlBarHeight = 20.0 + 30.0;
static const CGFloat kVideoControlAnimationTimeInterval = 0.3;
static const CGFloat kVideoControlTimeLabelFontSize = 10.0;
static const CGFloat kVideoControlBarAutoFadeOutTimeInterval = 5.0;
@interface ZXVideoPlayerControlView ()
@property (nonatomic, strong) UIView *topBar;
@property (nonatomic, strong) UIView *bottomBar;
@property (nonatomic, strong) UIButton *playButton;
@property (nonatomic, strong) UIButton *pauseButton;
@property (nonatomic, strong) UIButton *fullScreenButton;
@property (nonatomic, strong) UIButton *shrinkScreenButton;
@property (nonatomic, strong) UISlider *timeSlider;
@property (nonatomic, strong) UILabel *timeLabel;
@property (nonatomic, assign) BOOL isBarShowing;
@property (nonatomic, strong) UIActivityIndicatorView *indicatorView;
@property (nonatomic, strong) UILabel *anchorLabel;
// 重试按钮
@property (nonatomic, strong) UIButton *retryButton;
@end
@implementation ZXVideoPlayerControlView
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.backgroundColor = [UIColor clearColor];
[self addSubview:self.topBar];
[self addSubview:self.bottomBar];
[self.bottomBar addSubview:self.playButton];
[self.bottomBar addSubview:self.pauseButton];
self.pauseButton.hidden = YES;
[self.bottomBar addSubview:self.fullScreenButton];
[self.bottomBar addSubview:self.shrinkScreenButton];
self.shrinkScreenButton.hidden = YES;
[self.bottomBar addSubview:self.timeSlider];
[self.bottomBar addSubview:self.timeLabel];
[self addSubview:self.indicatorView];
// 直播状态
[self addSubview:self.anchorLabel];
// 重试按钮
// [self addSubview:self.retryButton];
// self.retryButton.hidden = YES;
// 返回按钮
[self.topBar addSubview:self.backButton];
// 锁定按钮
[self.topBar addSubview:self.lockButton];
self.lockButton.hidden = YES;
// 缓冲进度条
[self.bottomBar insertSubview:self.bufferProgressView belowSubview:self.timeSlider];
// 快进、快退指示器
[self addSubview:self.timeIndicatorView];
// 亮度指示器
[self addSubview:self.brightnessIndicatorView];
// 音量指示器
[self addSubview:self.volumeIndicatorView];
// 电池条
// [self.topBar addSubview:self.batteryView];
// 标题
[self.topBar addSubview:self.titleLabel];
// 标题
[self.topBar addSubview:self.shareButton];
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onTap:)];
[self addGestureRecognizer:tapGesture];
}
return self;
}
- (void)layoutSubviews
{
[super layoutSubviews];
self.topBar.frame = CGRectMake(CGRectGetMinX(self.bounds), CGRectGetMinY(self.bounds), CGRectGetWidth(self.bounds), kVideoControlBarHeight);
self.bottomBar.frame = CGRectMake(CGRectGetMinX(self.bounds), CGRectGetHeight(self.bounds) - kVideoControlBarHeight, CGRectGetWidth(self.bounds), kVideoControlBarHeight);
self.playButton.frame = CGRectMake(CGRectGetMinX(self.bottomBar.bounds), CGRectGetHeight(self.bottomBar.bounds)/2 - CGRectGetHeight(self.playButton.bounds)/2, CGRectGetWidth(self.playButton.bounds), CGRectGetHeight(self.playButton.bounds));
self.pauseButton.frame = self.playButton.frame;
self.fullScreenButton.frame = CGRectMake(CGRectGetWidth(self.bottomBar.bounds) - CGRectGetWidth(self.fullScreenButton.bounds), CGRectGetHeight(self.bottomBar.bounds)/2 - CGRectGetHeight(self.fullScreenButton.bounds)/2, CGRectGetWidth(self.fullScreenButton.bounds), CGRectGetHeight(self.fullScreenButton.bounds));
self.shrinkScreenButton.frame = self.fullScreenButton.frame;
self.timeSlider.frame = CGRectMake(CGRectGetMaxX(self.playButton.frame), 0, CGRectGetMinX(self.fullScreenButton.frame) - CGRectGetMaxX(self.playButton.frame), kVideoControlBarHeight);
self.timeLabel.frame = CGRectMake(CGRectGetMidX(self.timeSlider.frame), CGRectGetHeight(self.bottomBar.bounds) - CGRectGetHeight(self.timeLabel.bounds) - 2.0, CGRectGetWidth(self.timeSlider.bounds)/2, CGRectGetHeight(self.timeLabel.bounds));
self.indicatorView.center = CGPointMake(CGRectGetMidX(self.bounds), CGRectGetMidY(self.bounds));
// 返回按钮
self.backButton.frame = CGRectMake(CGRectGetMinX(self.topBar.bounds), CGRectGetHeight(self.topBar.bounds) - 40, 40, 40);
// 锁定按钮
self.lockButton.frame = CGRectMake(CGRectGetMaxX(self.topBar.bounds) - 40 - 10, CGRectGetHeight(self.topBar.bounds) - 40, 40, 40);
// 缓冲进度条
self.bufferProgressView.bounds = CGRectMake(0, 0, self.timeSlider.bounds.size.width - 7, self.timeSlider.bounds.size.height);
self.bufferProgressView.center = CGPointMake(self.timeSlider.center.x + 2, self.timeSlider.center.y);
// 快进、快退指示器
self.timeIndicatorView.center = self.indicatorView.center;
// 亮度指示器
self.brightnessIndicatorView.center = self.indicatorView.center;
// 音量指示器
self.volumeIndicatorView.center = self.indicatorView.center;
// 电池条
// self.batteryView.frame = CGRectMake(CGRectGetMinX(self.lockButton.frame) - CGRectGetWidth(self.batteryView.bounds) - 10, CGRectGetMidY(self.topBar.bounds) - CGRectGetHeight(self.batteryView.bounds) / 2, CGRectGetWidth(self.batteryView.bounds), CGRectGetHeight(self.batteryView.bounds));
// 标题
self.titleLabel.frame = CGRectMake(CGRectGetWidth(self.backButton.bounds), 20, CGRectGetWidth(self.topBar.bounds) - CGRectGetWidth(self.backButton.bounds) - CGRectGetWidth(self.lockButton.bounds), kVideoControlBarHeight - 20);
self.anchorLabel.center = self.center;
self.retryButton.center = self.center;
}
- (void)didMoveToSuperview
{
[super didMoveToSuperview];
self.isBarShowing = YES;
}
#pragma mark - Public Method
- (void)animateHide
{
if (!self.isBarShowing) {
return;
}
[[NSNotificationCenter defaultCenter] postNotificationName:kZXPlayerControlViewHideNotification object:nil];
[UIView animateWithDuration:kVideoControlAnimationTimeInterval animations:^{
self.topBar.alpha = 0.0;
self.bottomBar.alpha = 0.0;
} completion:^(BOOL finished) {
self.isBarShowing = NO;
}];
}
- (void)animateShow
{
if (self.isBarShowing) {
return;
}
[UIView animateWithDuration:kVideoControlAnimationTimeInterval animations:^{
self.topBar.alpha = 1.0;
self.bottomBar.alpha = 1.0;
} completion:^(BOOL finished) {
self.isBarShowing = YES;
[self autoFadeOutControlBar];
}];
}
- (void)autoFadeOutControlBar
{
if (!self.isBarShowing) {
return;
}
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(animateHide) object:nil];
[self performSelector:@selector(animateHide) withObject:nil afterDelay:kVideoControlBarAutoFadeOutTimeInterval];
}
- (void)cancelAutoFadeOutControlBar
{
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(animateHide) object:nil];
}
#pragma mark - Tap Detection
- (void)onTap:(UITapGestureRecognizer *)gesture
{
if (gesture.state == UIGestureRecognizerStateRecognized) {
if (self.isBarShowing) {
[self animateHide];
} else {
[self animateShow];
[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationFade];
}
}
}
#pragma mark - getters
- (UIView *)topBar
{
if (!_topBar) {
_topBar = [UIView new];
_topBar.accessibilityIdentifier = @"TopBar";
_topBar.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];
}
return _topBar;
}
- (UIView *)bottomBar
{
if (!_bottomBar) {
_bottomBar = [UIView new];
_bottomBar.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];
}
return _bottomBar;
}
- (UIButton *)playButton
{
if (!_playButton) {
_playButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_playButton setImage:[UIImage imageNamed:@"kr-video-player-play"] forState:UIControlStateNormal];
_playButton.bounds = CGRectMake(0, 0, kVideoControlBarHeight, kVideoControlBarHeight);
}
return _playButton;
}
- (UIButton *)pauseButton
{
if (!_pauseButton) {
_pauseButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_pauseButton setImage:[UIImage imageNamed:@"kr-video-player-pause"] forState:UIControlStateNormal];
_pauseButton.bounds = CGRectMake(0, 0, kVideoControlBarHeight, kVideoControlBarHeight);
}
return _pauseButton;
}
- (UIButton *)fullScreenButton
{
if (!_fullScreenButton) {
_fullScreenButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_fullScreenButton setImage:[UIImage imageNamed:@"kr-video-player-fullscreen"] forState:UIControlStateNormal];
_fullScreenButton.bounds = CGRectMake(0, 0, kVideoControlBarHeight, kVideoControlBarHeight);
}
return _fullScreenButton;
}
- (UIButton *)shrinkScreenButton
{
if (!_shrinkScreenButton) {
_shrinkScreenButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_shrinkScreenButton setImage:[UIImage imageNamed:@"kr-video-player-shrinkscreen"] forState:UIControlStateNormal];
_shrinkScreenButton.bounds = CGRectMake(0, 0, kVideoControlBarHeight, kVideoControlBarHeight);
}
return _shrinkScreenButton;
}
- (UISlider *)timeSlider
{
if (!_timeSlider) {
_timeSlider = [[UISlider alloc] init];
[_timeSlider setThumbImage:[UIImage imageNamed:@"kr-video-player-point"] forState:UIControlStateNormal];
[_timeSlider setMinimumTrackTintColor:[UIColor whiteColor]];
[_timeSlider setMaximumTrackTintColor:[[UIColor lightGrayColor] colorWithAlphaComponent:0.4]];
}
return _timeSlider;
}
- (UILabel *)timeLabel
{
if (!_timeLabel) {
_timeLabel = [UILabel new];
_timeLabel.backgroundColor = [UIColor clearColor];
_timeLabel.font = [UIFont systemFontOfSize:kVideoControlTimeLabelFontSize];
_timeLabel.textColor = [UIColor whiteColor];
_timeLabel.textAlignment = NSTextAlignmentRight;
_timeLabel.bounds = CGRectMake(0, 0, kVideoControlTimeLabelFontSize, kVideoControlTimeLabelFontSize);
}
return _timeLabel;
}
- (UIActivityIndicatorView *)indicatorView
{
if (!_indicatorView) {
_indicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
[_indicatorView stopAnimating];
}
return _indicatorView;
}
- (UIButton *)backButton
{
if (!_backButton) {
_backButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, kVideoControlBarHeight , kVideoControlBarHeight)];
[_backButton setImage:[UIImage imageNamed:@"zx-video-banner-back"] forState:UIControlStateNormal];
_backButton.contentEdgeInsets = UIEdgeInsetsMake(5, 0, -5, 0);
_backButton.imageEdgeInsets = UIEdgeInsetsMake(6, 6, 6, 6);
}
return _backButton;
}
- (UIButton *)lockButton
{
if (!_lockButton) {
_lockButton =[[UIButton alloc] initWithFrame:CGRectMake(0, 0, kVideoControlBarHeight, kVideoControlBarHeight)];
[_lockButton setImage:[UIImage imageNamed:@"zx-video-player-unlock"] forState:UIControlStateNormal];
[_lockButton setImage:[UIImage imageNamed:@"zx-video-player-lock"] forState:UIControlStateHighlighted];
[_lockButton setImage:[UIImage imageNamed:@"zx-video-player-lock"] forState:UIControlStateSelected];
_lockButton.contentEdgeInsets = UIEdgeInsetsMake(5, 0, -5, 0);
}
return _lockButton;
}
- (UIProgressView *)bufferProgressView
{
if (!_bufferProgressView) {
_bufferProgressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
_bufferProgressView.progressTintColor = [UIColor colorWithWhite:1 alpha:0.3];
_bufferProgressView.trackTintColor = [UIColor clearColor];
}
return _bufferProgressView;
}
- (ZXVideoPlayerTimeIndicatorView *)timeIndicatorView
{
if (!_timeIndicatorView) {
_timeIndicatorView = [[ZXVideoPlayerTimeIndicatorView alloc] initWithFrame:CGRectMake(0, 0, kVideoTimeIndicatorViewSide, kVideoTimeIndicatorViewSide)];
}
return _timeIndicatorView;
}
- (ZXVideoPlayerBrightnessView *)brightnessIndicatorView
{
if (!_brightnessIndicatorView) {
_brightnessIndicatorView = [[ZXVideoPlayerBrightnessView alloc] initWithFrame:CGRectMake(0, 0, kVideoBrightnessIndicatorViewSide, kVideoBrightnessIndicatorViewSide)];
}
return _brightnessIndicatorView;
}
- (ZXVideoPlayerVolumeView *)volumeIndicatorView
{
if (!_volumeIndicatorView) {
_volumeIndicatorView = [[ZXVideoPlayerVolumeView alloc] initWithFrame:CGRectMake(0, 0, kVideoVolumeIndicatorViewSide, kVideoVolumeIndicatorViewSide)];
}
return _volumeIndicatorView;
}
- (ZXVideoPlayerBatteryView *)batteryView
{
if (!_batteryView) {
_batteryView = [[ZXVideoPlayerBatteryView alloc] initWithFrame:CGRectMake(0, 0, kVideoBatteryViewWidth, kVideoBatteryViewHeight)];
}
return _batteryView;
}
- (UILabel *)titleLabel
{
if (!_titleLabel) {
_titleLabel = [[UILabel alloc] init];
_titleLabel.lineBreakMode = NSLineBreakByTruncatingTail;
_titleLabel.textColor = [UIColor whiteColor];
_titleLabel.textAlignment = NSTextAlignmentCenter;
}
return _titleLabel;
}
- (UILabel *)anchorLabel {
if (!_anchorLabel) {
_anchorLabel = [[UILabel alloc] init];
_anchorLabel.textColor = [UIColor whiteColor];
_anchorLabel.textAlignment = NSTextAlignmentCenter;
_anchorLabel.layer.borderColor = [UIColor whiteColor].CGColor;
_anchorLabel.font = [UIFont systemFontOfSize:15];
}
return _anchorLabel;
}
- (UIButton *)retryButton {
if (!_retryButton) {
_retryButton = [UIButton buttonWithType:UIButtonTypeCustom];
_retryButton.bounds = CGRectMake(0, 0, 50, 30);
[_retryButton setTitle:@"重试" forState:UIControlStateNormal];
[_retryButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
_retryButton.layer.borderColor = [UIColor whiteColor].CGColor;
_retryButton.layer.borderWidth = 1.f;
_retryButton.layer.masksToBounds = YES;
_retryButton.layer.cornerRadius = 4;
}
return _retryButton;
}
- (UIButton *)shareButton {
if (!_shareButton) {
_shareButton = [UIButton buttonWithType:UIButtonTypeCustom];
[_shareButton setFrame:CGRectMake(MainScreenWidth-40, 20, 30, 30)];
[_shareButton setImage:[UIImage imageNamed:@"cnlive_live_share"] forState:UIControlStateNormal];
}
return _shareButton;
}
#pragma mark - setter
- (void)setLiveStatus:(int)liveStatus {
_liveStatus = liveStatus;
switch (liveStatus) {
case 0:
break;
case 1:
_anchorLabel.text = @"主播已离开,马上回来~";
break;
case 2:
_anchorLabel.text = @"直播已结束";
break;
default:
break;
}
[_anchorLabel sizeToFit];
}
@end