RQVipAuthorityNewCell.h 857 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RQVipAuthorityNewCell.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/11/14.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonCollectionViewCell.h"
  9. #import "RQVipAuthorityNewItemViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQVipAuthorityNewCell : RQCommonCollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *oneIconImageView;
  13. @property (weak, nonatomic) IBOutlet UILabel *oneTitleLabel;
  14. @property (weak, nonatomic) IBOutlet UIImageView *twoIconImageView;
  15. @property (weak, nonatomic) IBOutlet UILabel *twoTitleLabel;
  16. @property (weak, nonatomic) IBOutlet UIImageView *threeIconImageView;
  17. @property (weak, nonatomic) IBOutlet UILabel *threeTitleLabel;
  18. @property (weak, nonatomic) IBOutlet UIImageView *fourIconImageView;
  19. @property (weak, nonatomic) IBOutlet UILabel *fourTitleLabel;
  20. @end
  21. NS_ASSUME_NONNULL_END