Files
yuyin_ios/SweetParty/主类/音悦新增/K歌厅/RoomSongListCell.m
2025-08-08 11:05:33 +08:00

29 lines
602 B
Objective-C
Executable File

//
// 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