123456789101112131415161718192021222324252627282930313233 |
- //
- // HomeMusicCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/5/15.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeMusicCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
- @property (weak, nonatomic) IBOutlet UIImageView *gbImgV;
- @property (weak, nonatomic) IBOutlet UILabel *timeL;
- @property (weak, nonatomic) IBOutlet UIImageView *tingImgV;
- @property (weak, nonatomic) IBOutlet UILabel *countL;
- @property (weak, nonatomic) IBOutlet UILabel *DateL;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *soundContant;
- @property (weak, nonatomic) IBOutlet UIView *lineV;
- + (HomeMusicCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataWithModel:(HomeSubItemModel *)model;
- - (void)setDataWithModel:(HomeSubItemModel *)model searchText:(NSString *)text;
- @end
- NS_ASSUME_NONNULL_END
|