// // MineViewCell.h // VclustersGemini // // Created by 黄盛威 on 2020/10/19. // Copyright © 2020 APPLE. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface MineViewCell : 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 (^didClickMaskSwitch)(UISwitch *maskSwitch); @end NS_ASSUME_NONNULL_END