12345678910111213141516171819202122232425262728 |
- //
- // filePathCreatTableViewCell.h
- // 隐私保护
- //
- // Created by xd h on 2023/12/29.
- //
- #import <UIKit/UIKit.h>
- #import "cloudPhoneExtraFileListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface filePathCreatTableViewCell : UITableViewCell
- @property(nonatomic,strong)UIView *lineView;
- @property(nonatomic,strong)UIView *cellBgView;
- @property(nonatomic,strong)UIImageView *mImageView;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *titleLabel2;
- @property(nonatomic,strong)UIImageView *rightImage;
- @property(nonatomic, strong) CALayer* bgViewLayer;
- @property(nonatomic, strong) UIButton *checkButton;
- @property(nonatomic, strong) cloudPhoneExtraFileModel *curModel;
- @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
- @end
- NS_ASSUME_NONNULL_END
|