12345678910111213141516171819202122232425262728 |
- //
- // MineViewCell.h
- // VclustersGemini
- //
- // Created by 黄盛威 on 2020/10/19.
- // Copyright © 2020 APPLE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|