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]; }