修正聊天卡片 UI

修正其他 UI 问题
This commit is contained in:
eggmanQQQ
2024-07-11 13:37:43 +08:00
parent 0d950baaf4
commit 0a973ca4d5
13 changed files with 89 additions and 59 deletions

View File

@@ -382,8 +382,10 @@ typedef enum : NSUInteger {
XPMineDataGameMateTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([XPMineDataGameMateTableViewCell class])
forIndexPath:indexPath];
cell.cellModel = [self.gameInfos xpSafeObjectAtIndex:indexPath.row];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
@kWeakify(self);
[cell setDidTapOrder:^(XPMineGamePartnerInfoModel *model) {
@kStrongify(self);
if (self.delegate) {
[self.delegate showGameOrderView:model];
}