Commit 4cf35888fdf8294408df958feb5b3d5b091db2a4

Authored by yanglingyu
1 parent 0b006cbf

兼容提交

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.2'
  11 + s.version = '0.0.3'
12 12 s.summary = '视讯头部一二级菜单组件'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNLiveClassifySegmentController.h
... ... @@ -10,6 +10,7 @@
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12 12 @interface CNLiveClassifySegmentController : CNCategoryBaseViewController
  13 +@property (nonatomic, assign) BOOL isLoad;
13 14 - (void)dataDivideIntoNormalAndOtherWithFirst:(BOOL)first;
14 15 @end
15 16  
... ...
CNLiveVideoClassifyKit/Classes/Controller/CNLiveClassifySegmentController.m
... ... @@ -285,6 +285,7 @@ static CGFloat moveHeight = 50;
285 285 }
286 286 }
287 287 [self addTheFirstPage];
  288 + self.isLoad = YES;
288 289 if (![CNUserShareManager isLogin]) {
289 290 [CNLiveClassifyJumpBridge bringCenterLoginViewToFront];
290 291 }
... ...