22 lines
430 B
Objective-C
Executable File
22 lines
430 B
Objective-C
Executable File
//
|
|
// CHXQMusicListCell.h
|
|
// romantic
|
|
//
|
|
// Created by bj_szd on 2022/4/8.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CHXQMusicListCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *singerLab;
|
|
@property (weak, nonatomic) IBOutlet UIButton *playBtn;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|