27 lines
645 B
C
27 lines
645 B
C
|
|
//
|
||
|
|
// RoomSongListCell.h
|
||
|
|
// romantic
|
||
|
|
//
|
||
|
|
// Created by 八角_马方圆 on 2021/12/30.
|
||
|
|
// Copyright © 2021 romantic. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "RoomSongListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface RoomSongListCell : UITableViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *singerLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *diangeBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *qingchangBtn;
|
||
|
|
|
||
|
|
@property(nonatomic, strong)RoomSongListModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|