Commit d4484f3f35afbfdfd16bc367d6e47252c19ef312
1 parent
806b8a60
交互问题
Showing
4 changed files
with
3 additions
and
4 deletions
CNLiveVideoClassifyKit.podspec
CNLiveVideoClassifyKit/Classes/ClassifyCategory/Controller/CNLiveClassifySegmentController.h
| ... | ... | @@ -11,6 +11,7 @@ NS_ASSUME_NONNULL_BEGIN |
| 11 | 11 | |
| 12 | 12 | @interface CNLiveClassifySegmentController : CNCategoryBaseViewController |
| 13 | 13 | @property (nonatomic, assign) BOOL isLoad; |
| 14 | +@property (nonatomic, assign) NSInteger isLoginIndex; | |
| 14 | 15 | // 点击定制频道按钮进入定制 |
| 15 | 16 | - (void)customAction:(UIButton *)sender; |
| 16 | 17 | - (void)dataDivideIntoNormalAndOtherWithFirst:(BOOL)first; | ... | ... |
CNLiveVideoClassifyKit/Classes/ClassifyCategory/Controller/CNLiveClassifySegmentController.m
| ... | ... | @@ -28,8 +28,6 @@ static const CGFloat animationHeight = 15; |
| 28 | 28 | @property (nonatomic, strong) UIImageView *topBgImg; //头部图片 |
| 29 | 29 | @property (nonatomic, assign) CGFloat topBgImgHeight;//头部图片高度 |
| 30 | 30 | |
| 31 | -@property (nonatomic, assign) NSInteger isLoginIndex; | |
| 32 | - | |
| 33 | 31 | @property (nonatomic, strong) NSString * currentAtatusColor; |
| 34 | 32 | //电商通知返回 |
| 35 | 33 | @property (nonatomic, copy) NSString *naviBackgroundColor; | ... | ... |
CNLiveVideoClassifyKit/Classes/ClassifyCategory/Controller/CNLiveSubSegmentController.m
| ... | ... | @@ -176,7 +176,7 @@ |
| 176 | 176 | self.myCategoryView.width = width; |
| 177 | 177 | weakself |
| 178 | 178 | [CNLiveListManager shareListManager].scrollViewDidScrollBlock = ^(BOOL isUp) { |
| 179 | - !self.scrollViewDidScrollBlock ?: self.scrollViewDidScrollBlock(isUp); | |
| 179 | + !weakSelf.scrollViewDidScrollBlock ?: weakSelf.scrollViewDidScrollBlock(isUp); | |
| 180 | 180 | }; |
| 181 | 181 | // Do any additional setup after loading the view. |
| 182 | 182 | } | ... | ... |