30 lines
827 B
Objective-C
Executable File
30 lines
827 B
Objective-C
Executable File
//
|
|
// RoomSongYidianCell.h
|
|
// romantic
|
|
//
|
|
// Created by 八角_马方圆 on 2022/1/6.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomSongListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomSongYidianCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *playingImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *orderLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *songNameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *tagLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *qingchangLab;
|
|
@property (weak, nonatomic) IBOutlet UIButton *statusButton;
|
|
|
|
@property(nonatomic, strong)RoomSongListModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|