Commit 5da5b6d9 by suolong

1.修复音量键不显示问题

parent 894defe5
...@@ -1537,6 +1537,8 @@ BDAlphaPlayerMetalViewDelegate ...@@ -1537,6 +1537,8 @@ BDAlphaPlayerMetalViewDelegate
*/ */
- (void)fus_initVolumnView - (void)fus_initVolumnView
{ {
// 移除自定义音量条和系统音量提示隐藏逻辑,恢复系统默认音量提示
/*
_volumnBGView = [[UIView alloc] initWithFrame:CGRectMake(0, UIView.fus_screenH - UIView.fus_SafeBottom - 1.5, UIView.fus_screenW, 1.5)]; _volumnBGView = [[UIView alloc] initWithFrame:CGRectMake(0, UIView.fus_screenH - UIView.fus_SafeBottom - 1.5, UIView.fus_screenW, 1.5)];
_volumnBGView.backgroundColor = [UIColor colorWithHex:@"C7C7CC" alpha:0.8]; _volumnBGView.backgroundColor = [UIColor colorWithHex:@"C7C7CC" alpha:0.8];
[self addSubview:_volumnBGView]; [self addSubview:_volumnBGView];
...@@ -1549,7 +1551,7 @@ BDAlphaPlayerMetalViewDelegate ...@@ -1549,7 +1551,7 @@ BDAlphaPlayerMetalViewDelegate
_volumnBGView.alpha = 0; _volumnBGView.alpha = 0;
MPVolumeView *systemVolumnView = [[MPVolumeView alloc] initWithFrame:CGRectMake(0, -2000, 0, 0)]; MPVolumeView *systemVolumnView = [[MPVolumeView alloc] initWithFrame:CGRectMake(0, -2000, 0, 0)];
[self addSubview:systemVolumnView]; [self addSubview:systemVolumnView];
*/
} }
-(void)fus_reloadRealtimeActivityWebView{ -(void)fus_reloadRealtimeActivityWebView{
......
...@@ -104,10 +104,12 @@ ...@@ -104,10 +104,12 @@
[self addSubview:_itemCollectionView]; [self addSubview:_itemCollectionView];
_normalImageDict = @{[NSString stringWithFormat:@"%ld",FUSItemViewOpenMic]:@"live_link_mic_voice_close", _normalImageDict = @{[NSString stringWithFormat:@"%ld",FUSItemViewCloseMic]:@"live_link_mic_voice_close",
[NSString stringWithFormat:@"%ld",FUSItemViewHomeMic]:@"live_link_mic_voice_home", [NSString stringWithFormat:@"%ld",FUSItemViewHomeMic]:@"live_link_mic_voice_home",
[NSString stringWithFormat:@"%ld",FUSItemViewDeleteMic]:@"live_link_mic_voice_delete", [NSString stringWithFormat:@"%ld",FUSItemViewDeleteMic]:@"live_link_mic_voice_delete",
[NSString stringWithFormat:@"%ld",FUSItemViewSendGift]:@"live_gift_view_icon_hl"}; [NSString stringWithFormat:@"%ld",FUSItemViewSendGift]:@"live_gift_view_icon_hl",
[NSString stringWithFormat:@"%ld",FUSItemViewOpenMic]:@"live_link_mic_voice_open",
};
// _hightlightedImageDict = @{[NSString stringWithFormat:@"%ld",FUSItemViewOpenMic]:@"live_link_mic_voice_close", // _hightlightedImageDict = @{[NSString stringWithFormat:@"%ld",FUSItemViewOpenMic]:@"live_link_mic_voice_close",
// [NSString stringWithFormat:@"%ld",FUSItemViewHomeMic]:@"live_link_mic_voice_home", // [NSString stringWithFormat:@"%ld",FUSItemViewHomeMic]:@"live_link_mic_voice_home",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment