HomeMusicCell.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. @property (weak, nonatomic) IBOutlet UIView *lineV;
  23. + (HomeMusicCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  24. - (void)setDataWithModel:(HomeSubItemModel *)model;
  25. - (void)setDataWithModel:(HomeSubItemModel *)model searchText:(NSString *)text;
  26. @end
  27. NS_ASSUME_NONNULL_END