Commit 98e92af1a4a43ff7da69df51f43ba77a192eb774

Authored by 王军波
1 parent 52d0b15b

修改直播退出按钮大小

LiveVideoCloud/Classes/Sections/InteractionSections/LiveBaseView.m
... ... @@ -716,7 +716,7 @@ typedef NS_ENUM(NSInteger, PopType) {//弹窗类型
716 716 if (!_closeBtn)
717 717 {
718 718 UIButton *closeBtn = [UIButton buttonWithType:UIButtonTypeCustom];
719   - closeBtn.frame = CGRectMake(SCREEN_WIDTH - 43,SCREEN_HEIGHT - self.bottomToolView.height + (self.bottomToolView.height - 33)*0.5, 33, 33);
  719 + closeBtn.frame = CGRectMake(SCREEN_WIDTH - 43,SCREEN_HEIGHT - self.bottomToolView.height + (self.bottomToolView.height - 45)*0.5, 45, 45);
720 720 [closeBtn setBackgroundImage:[UIImage imageNamed:@"LiveCloseNormal"] forState:UIControlStateNormal];
721 721 [closeBtn setBackgroundImage:[UIImage imageNamed:@"LiveCloseTouch"] forState:UIControlStateHighlighted];
722 722 _closeBtn = closeBtn;
... ...