提交代码

This commit is contained in:
linyudan
2023-12-05 10:29:55 -08:00
parent b70b5ad456
commit 1755bab5c3
2 changed files with 1 additions and 1 deletions

View File

@@ -140,6 +140,7 @@
_lookLabel.textColor = UIColorMewFromRGB(0x57585F);
_lookLabel.font = kFontRegular(10);
_lookLabel.textAlignment = NSTextAlignmentCenter;
_lookLabel.hidden = YES;
}
return _lookLabel;
}

View File

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