filePathCreatTableViewCell.h 798 B

12345678910111213141516171819202122232425262728
  1. //
  2. // filePathCreatTableViewCell.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/12/29.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "cloudPhoneExtraFileListModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface filePathCreatTableViewCell : 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) UIButton *checkButton;
  19. @property(nonatomic, strong) cloudPhoneExtraFileModel *curModel;
  20. @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
  21. @end
  22. NS_ASSUME_NONNULL_END