Commit a94c9c99220fe1d2f9b8c37e38024af2438e9841

Authored by zhangxiaowen
1 parent 7ebae970

no message

CNLivePlayer.podspec
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 Pod::Spec.new do |s| 9 Pod::Spec.new do |s|
10 s.name = 'CNLivePlayer' 10 s.name = 'CNLivePlayer'
11 s.version = '0.0.1' 11 s.version = '0.0.1'
12 - s.summary = '播放器' 12 + s.summary = '播放器和推流器'
13 13
14 # This description is used to generate tags and improve search results. 14 # This description is used to generate tags and improve search results.
15 # * Think: What does it do? Why did you write it? What is the focus? 15 # * Think: What does it do? Why did you write it? What is the focus?
@@ -18,7 +18,7 @@ Pod::Spec.new do |s| @@ -18,7 +18,7 @@ Pod::Spec.new do |s|
18 # * Finally, don't worry about the indent, CocoaPods strips it! 18 # * Finally, don't worry about the indent, CocoaPods strips it!
19 19
20 s.description = <<-DESC 20 s.description = <<-DESC
21 -TODO: Add long description of the pod here. 21 +网家家视频播放器和推流器.
22 DESC 22 DESC
23 23
24 s.homepage = 'http://bj.gitlab.cnlive.com/ios-team/CNLivePlayer' 24 s.homepage = 'http://bj.gitlab.cnlive.com/ios-team/CNLivePlayer'
@@ -73,11 +73,6 @@ TODO: Add long description of the pod here. @@ -73,11 +73,6 @@ TODO: Add long description of the pod here.
73 ss.source_files = 'CNLivePlayer/Classes/Streamer/*.{h,m}' 73 ss.source_files = 'CNLivePlayer/Classes/Streamer/*.{h,m}'
74 end 74 end
75 75
76 - # 弹幕  
77 - s.subspec 'Barrage' do |ss|  
78 - ss.source_files = 'CNLivePlayer/Classes/Barrage/*.{h,m}'  
79 - end  
80 -  
81 s.static_framework = true 76 s.static_framework = true
82 s.libraries = 'z', 'bz2', 'stdc++' 77 s.libraries = 'z', 'bz2', 'stdc++'
83 s.frameworks = 'UIKit', 'MediaPlayer', 'VideoToolbox' 78 s.frameworks = 'UIKit', 'MediaPlayer', 'VideoToolbox'
CNLivePlayer/Classes/Barrage/CNLiveBarrageView.h deleted 100644 → 0
1 -//  
2 -// CNLiveBarrageView.h  
3 -// CNLivePlayer_Example  
4 -//  
5 -// Created by CNLive-zxw on 2019/8/20.  
6 -// Copyright © 2019 153993236@qq.com. All rights reserved.  
7 -//  
8 -  
9 -#import <UIKit/UIKit.h>  
10 -  
11 -NS_ASSUME_NONNULL_BEGIN  
12 -  
13 -@interface CNLiveBarrageView : UIView  
14 -  
15 -@end  
16 -  
17 -NS_ASSUME_NONNULL_END  
CNLivePlayer/Classes/Barrage/CNLiveBarrageView.m deleted 100644 → 0
1 -//  
2 -// CNLiveBarrageView.m  
3 -// CNLivePlayer_Example  
4 -//  
5 -// Created by CNLive-zxw on 2019/8/20.  
6 -// Copyright © 2019 153993236@qq.com. All rights reserved.  
7 -//  
8 -  
9 -#import "CNLiveBarrageView.h"  
10 -  
11 -@implementation CNLiveBarrageView  
12 -  
13 -/*  
14 -// Only override drawRect: if you perform custom drawing.  
15 -// An empty implementation adversely affects performance during animation.  
16 -- (void)drawRect:(CGRect)rect {  
17 - // Drawing code  
18 -}  
19 -*/  
20 -  
21 -@end