HomeMusicCell.h 1010 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // HomeMusicCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/15.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubItemModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeMusicCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  15. @property (weak, nonatomic) IBOutlet UIImageView *gbImgV;
  16. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  17. @property (weak, nonatomic) IBOutlet UIImageView *tingImgV;
  18. @property (weak, nonatomic) IBOutlet UILabel *countL;
  19. @property (weak, nonatomic) IBOutlet UILabel *DateL;
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  21. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *soundContant;
  22. + (HomeMusicCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. - (void)setDataWithModel:(HomeSubItemModel *)model;
  24. @end
  25. NS_ASSUME_NONNULL_END