1234567891011121314151617181920212223242526272829 |
- //
- // lastFileTableViewCell.h
- // 双子星云手机
- //
- // Created by xd h on 2024/7/9.
- //
- #import <UIKit/UIKit.h>
- #import "lastFileManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface lastFileTableViewCell : UITableViewCell
- @property(nonatomic,strong)UIView *cellBgView;
- @property(nonatomic,strong)UILabel *timeLabel;
- @property(nonatomic,strong)UIImageView *mImageView;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *contentLabel;
- @property(nonatomic, strong) UIButton *checkButton;
- @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
- @property(nonatomic,strong) lastFileModel*curLastFileModel;
- - (void)hideCheckButtonBy:(BOOL)isHide;
- @end
- NS_ASSUME_NONNULL_END
|