Commit c56ed89f92b5987be8c7cf304e78a5505f6d04cb
1 parent
4cf35888
no message
Showing
4 changed files
with
6 additions
and
6 deletions
CNLiveVideoClassifyKit.podspec
CNLiveVideoClassifyKit/Classes/Controller/CNLiveSubSegmentController.m
| ... | ... | @@ -139,7 +139,7 @@ |
| 139 | 139 | [self.playingImgV addSubview:self.playTipImgV]; |
| 140 | 140 | [self.progressView addSubview:self.playingBtn]; |
| 141 | 141 | YYCache * yyCache = [YYCache cacheWithName:[NSString stringWithFormat:@"CNLastPlayedAudio_%@",CNUserShareModel.uid]]; |
| 142 | - CNLiveAlbumAudioListModel *model = (CNLiveAlbumAudioListModel *)[yyCache objectForKey:[NSString stringWithFormat:@"%@_%@",wjjLastAudioInfoSaveKey,CNUserShareModel.uid]]; | |
| 142 | + CNLiveAlbumAudioListModelModule *model = (CNLiveAlbumAudioListModelModule *)[yyCache objectForKey:[NSString stringWithFormat:@"%@_%@",wjjLastAudioInfoSaveKey,CNUserShareModel.uid]]; | |
| 143 | 143 | if (model) { |
| 144 | 144 | if (model && !CNLiveStringIsEmpty(model.activityId)) { |
| 145 | 145 | self.playingBtn.userInteractionEnabled = YES; |
| ... | ... | @@ -232,7 +232,7 @@ |
| 232 | 232 | // 通知方法 切换音乐时的显示 |
| 233 | 233 | - (void)audioPlayUpdateInfo:(NSNotification *)notifi { |
| 234 | 234 | |
| 235 | - CNLiveAlbumAudioListModel *model = notifi.object; | |
| 235 | + CNLiveAlbumAudioListModelModule *model = notifi.object; | |
| 236 | 236 | if (model && !CNLiveStringIsEmpty(model.activityId)) { |
| 237 | 237 | self.playingBtn.userInteractionEnabled = YES; |
| 238 | 238 | self.progressView.hidden = NO; |
| ... | ... | @@ -448,7 +448,7 @@ |
| 448 | 448 | - (void)playingAction:(UIButton *)sender { |
| 449 | 449 | |
| 450 | 450 | YYCache * yyCache = [YYCache cacheWithName:[NSString stringWithFormat:@"CNLastPlayedAudio_%@",CNUserShareModel.uid]]; |
| 451 | - CNLiveAlbumAudioListModel *model = (CNLiveAlbumAudioListModel *)[yyCache objectForKey:[NSString stringWithFormat:@"%@_%@",wjjLastAudioInfoSaveKey,CNUserShareModel.uid]]; | |
| 451 | + CNLiveAlbumAudioListModelModule *model = (CNLiveAlbumAudioListModelModule *)[yyCache objectForKey:[NSString stringWithFormat:@"%@_%@",wjjLastAudioInfoSaveKey,CNUserShareModel.uid]]; | |
| 452 | 452 | if (model && model.activityId) { |
| 453 | 453 | [CNLiveClassifyJumpBridge showViewOrPushVCWithCurrentVC:self pushType:CNLiveClassifyJumpPushAudioPlayerVC]; |
| 454 | 454 | } | ... | ... |
CNLiveVideoClassifyKit/Classes/Model/CNCategoryGetChannelModel.h
| ... | ... | @@ -51,7 +51,7 @@ |
| 51 | 51 | |
| 52 | 52 | @end |
| 53 | 53 | |
| 54 | -@interface CNLiveAlbumAudioListModel : NSObject<NSCoding> | |
| 54 | +@interface CNLiveAlbumAudioListModelModule : NSObject<NSCoding> | |
| 55 | 55 | @property (nonatomic, copy) NSString *activityId; //活动ID |
| 56 | 56 | @property (nonatomic, copy) NSString *cmccActiveId;//音响播放id |
| 57 | 57 | @property (nonatomic, copy) NSString *title; //标题名称 | ... | ... |