29 lines
602 B
Objective-C
Executable File
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
|