From 1755bab5c35d91ae05f178ace4711809617943b6 Mon Sep 17 00:00:00 2001 From: linyudan <1031378945@qq.com> Date: Tue, 5 Dec 2023 10:29:55 -0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Main/Mew/Party/View/MewPartyListCollectionViewCell.m | 1 + .../yinmeng-ios/Main/Mew/Party/View/MewPartyViewController.m | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyListCollectionViewCell.m b/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyListCollectionViewCell.m index a5040d5..cea669f 100644 --- a/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyListCollectionViewCell.m +++ b/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyListCollectionViewCell.m @@ -140,6 +140,7 @@ _lookLabel.textColor = UIColorMewFromRGB(0x57585F); _lookLabel.font = kFontRegular(10); _lookLabel.textAlignment = NSTextAlignmentCenter; + _lookLabel.hidden = YES; } return _lookLabel; } diff --git a/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyViewController.m b/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyViewController.m index b14e56e..02a9eb9 100644 --- a/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyViewController.m +++ b/yinmeng-ios/yinmeng-ios/Main/Mew/Party/View/MewPartyViewController.m @@ -94,7 +94,6 @@ - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.row >= self.homeRecommendModels.count) { return; } - NSString *roomId = self.homeRecommendModels[indexPath.row].roomUid; [MewRoomViewController openRoom:roomId viewController:self]; }