MineViewCell.h 733 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MineViewCell.h
  3. // VclustersGemini
  4. //
  5. // Created by 黄盛威 on 2020/10/19.
  6. // Copyright © 2020 APPLE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MineViewCell : UITableViewCell
  11. @property(nonatomic,strong)UIView *lineView;
  12. @property(nonatomic,strong)UIView *cellBgView;
  13. @property(nonatomic,strong)UIImageView *mImageView;
  14. @property(nonatomic,strong)UILabel *titleLabel;
  15. @property(nonatomic,strong)UILabel *titleLabel2;
  16. @property(nonatomic,strong)UIImageView *rightImage;
  17. @property(nonatomic, strong) CALayer* bgViewLayer;
  18. @property(nonatomic, strong) UISwitch *maskSwitch;
  19. @property (nonatomic,copy) void (^didClickMaskSwitch)(UISwitch *maskSwitch);
  20. @end
  21. NS_ASSUME_NONNULL_END