HomeMusicCell.h 859 B

1234567891011121314151617181920212223242526272829
  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. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  20. + (HomeMusicCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  21. @end
  22. NS_ASSUME_NONNULL_END