HomeMusicCell.h 794 B

12345678910111213141516171819202122232425262728
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeMusicCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  13. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  14. @property (weak, nonatomic) IBOutlet UIImageView *gbImgV;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  16. @property (weak, nonatomic) IBOutlet UIImageView *tingImgV;
  17. @property (weak, nonatomic) IBOutlet UILabel *countL;
  18. @property (weak, nonatomic) IBOutlet UILabel *DateL;
  19. + (HomeMusicCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  20. @end
  21. NS_ASSUME_NONNULL_END