Commit da2663f3178255fd2eb39597e2a61d1fa4c0c124

Authored by yanglingyu
1 parent c56ed89f

no message

CNLiveVideoClassifyKit.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveVideoClassifyKit'
11   - s.version = '0.0.4'
  11 + s.version = '0.0.5'
12 12 s.summary = '视讯头部一二级菜单组件'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNLiveClassifySegmentController.h
... ... @@ -12,6 +12,8 @@ NS_ASSUME_NONNULL_BEGIN
12 12 @interface CNLiveClassifySegmentController : CNCategoryBaseViewController
13 13 @property (nonatomic, assign) BOOL isLoad;
14 14 - (void)dataDivideIntoNormalAndOtherWithFirst:(BOOL)first;
  15 +// 点击定制频道按钮进入定制
  16 +- (void)customAction:(UIButton *)sender;
15 17 @end
16 18  
17 19 NS_ASSUME_NONNULL_END
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNLiveClassifySegmentController.m
... ... @@ -8,7 +8,6 @@
8 8 #import "CNLiveClassifySegmentController.h"
9 9 #import <UIKit/UIKit.h>
10 10 #import "CNCustomChannelListView.h"
11   -#import "CNCategoryGetChannelModel.h"
12 11 #import "CNLiveListManager.h"
13 12 #import "CNLiveSubSegmentController.h"
14 13 #import "CNWebRedirectHandle.h"
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNLiveSubSegmentController.m
... ... @@ -6,7 +6,6 @@
6 6 //
7 7  
8 8 #import "CNLiveSubSegmentController.h"
9   -#import "CNCategoryGetChannelModel.h"
10 9 #import "CNAudioPlayProgressView.h"
11 10 #import "CNLiveListManager.h"
12 11  
... ...
CNLiveVideoClassifyKit/Classes/Header/CNLivevideoClassifyPCH.h
... ... @@ -25,7 +25,10 @@
25 25 #import <QMUIKit/QMUIKit.h>
26 26 #import "UIImage+AdBundleImage.h"
27 27 #import "CNLiveClassifySegmentController.h"
  28 +#import "CNLiveSubSegmentController.h"
28 29 #import "CNLiveClassifyJumpBridge.h"
  30 +#import "CNWebRedirectHandle.h"
  31 +#import "CNCategoryGetChannelModel.h"
29 32  
30 33  
31 34 #endif /* CNLivevideoClassifyPCH_h */
... ...
CNLiveVideoClassifyKit/Classes/Manager/CNLiveListManager.h
... ... @@ -6,8 +6,6 @@
6 6 //
7 7  
8 8 #import <Foundation/Foundation.h>
9   -@class CNCategoryGetChannelModel;
10   -@class CNLiveListViewController;
11 9  
12 10 NS_ASSUME_NONNULL_BEGIN
13 11  
... ...
CNLiveVideoClassifyKit/Classes/Manager/CNLiveListManager.m
... ... @@ -6,7 +6,6 @@
6 6 //
7 7  
8 8 #import "CNLiveListManager.h"
9   -#import "CNCategoryGetChannelModel.h"
10 9 #import "CNLiveClassifySegmentController.h"
11 10  
12 11 @interface CNLiveListManager()
... ...
CNLiveVideoClassifyKit/Classes/view/CNCustomChannelListView.m
... ... @@ -8,7 +8,6 @@
8 8  
9 9 #import "CNCustomChannelListView.h"
10 10 #import "CNCustomChannelListCell.h"
11   -#import "CNCategoryGetChannelModel.h"
12 11 #import "CNCustomChannelListReusableView.h"
13 12 #import "NSString+CNLiveExtension.h"
14 13  
... ...