fileSetTableViewCell.h 679 B

1234567891011121314151617181920212223242526
  1. //
  2. // fileSetTableViewCell.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/12/28.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface fileSetTableViewCell : UITableViewCell
  10. @property(nonatomic,strong)UIView *lineView;
  11. @property(nonatomic,strong)UIView *cellBgView;
  12. @property(nonatomic,strong)UIImageView *mImageView;
  13. @property(nonatomic,strong)UILabel *titleLabel;
  14. @property(nonatomic,strong)UILabel *titleLabel2;
  15. @property(nonatomic,strong)UIImageView *rightImage;
  16. @property(nonatomic, strong) CALayer* bgViewLayer;
  17. @property(nonatomic, strong) UISwitch *maskSwitch;
  18. @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
  19. @end
  20. NS_ASSUME_NONNULL_END