房间坑位、公屏、更多菜单UI调整

This commit is contained in:
chenguilong
2022-10-09 16:35:35 +08:00
parent f701261328
commit ed54e16cd4
21 changed files with 48 additions and 27 deletions

View File

@@ -246,7 +246,7 @@
[self.topicStackView mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerX.mas_equalTo(self);
make.height.mas_equalTo(15);
make.top.mas_equalTo(58 + 5 + 6 + 12 + 3 + kNavigationHeight);
make.top.mas_equalTo(50 + 5 + 6 + 12 + 3 + kNavigationHeight);
}];
}
@@ -1195,11 +1195,11 @@
RoomInfoModel * roomInfo = self.delegate.getRoomInfo;
CGFloat offsetY = kNavigationHeight;
if (roomInfo.roomModeType == RoomModeType_Open_Blind) {
offsetY += ((58 + 5) * kScreenScale + 10 + 12 + 3 + 40);
offsetY += ((50 + 5) * kScreenScale + 10 + 12 + 3 + 40);
} else if (roomInfo.type == RoomType_Anchor) {
offsetY += (120 + 5 + 6 + 20 +60 + 3);
} else {
offsetY += (58 + 5 + 10 + 12 + 3 + 40);
offsetY += (50 + 5 + 10 + 12 + 3 + 40);
}
[self.topicStackView mas_updateConstraints:^(MASConstraintMaker *make) {
@@ -1487,7 +1487,7 @@
[self.hourRankEntranceView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.mas_equalTo(15);
make.centerY.mas_equalTo(self.contributeEnterView);
make.width.mas_equalTo(69);
make.width.mas_equalTo(61);
make.height.mas_equalTo(22);
}];
}