Files
yuyin_ios/SweetParty/主类/音悦新增/K歌厅/RoomSongListCell.m

29 lines
602 B
Mathematica
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// RoomSongListCell.m
// romantic
//
// Created by _ on 2021/12/30.
// Copyright © 2021 romantic. All rights reserved.
//
#import "RoomSongListCell.h"
@implementation RoomSongListCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
[self.diangeBtn styleGradiBlueColor];
}
- (void)setModel:(RoomSongListModel *)model {
_model = model;
[self.imgV sd_setImageWithURL:[NSURL URLWithString:model.poster] placeholderImage:kDefaultUserIcon];
self.titleLab.text = model.song_name;
self.singerLab.text = model.singer;
}
@end