23 lines
464 B
Objective-C
23 lines
464 B
Objective-C
//
|
|
// QXNobilityDetailCell.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/8.
|
|
//
|
|
|
|
#import "QXNobilityDetailCell.h"
|
|
|
|
@implementation QXNobilityDetailCell
|
|
-(void)setModel:(QXNobilityPowerList *)model{
|
|
_model = model;
|
|
[self.imageView sd_setImageWithURL:[NSURL URLWithString:model.image]];
|
|
self.titleLabel.text = model.name;
|
|
self.detailLabel.text = model.content;
|
|
}
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
}
|
|
|
|
@end
|