1234567891011121314151617181920212223242526 |
- //
- // fileSetTableViewCell.h
- // 隐私保护
- //
- // Created by xd h on 2023/12/28.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface fileSetTableViewCell : 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) UISwitch *maskSwitch;
- @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
- @end
- NS_ASSUME_NONNULL_END
|