MineViewCell.h 655 B

1234567891011121314151617181920212223242526
  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. @end
  20. NS_ASSUME_NONNULL_END