lastFileTableViewCell~.h 716 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // lastFileTableViewCell.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/7/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "lastFileManager.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface lastFileTableViewCell : UITableViewCell
  11. @property(nonatomic,strong)UIView *cellBgView;
  12. @property(nonatomic,strong)UILabel *timeLabel;
  13. @property(nonatomic,strong)UIImageView *mImageView;
  14. @property(nonatomic,strong)UILabel *titleLabel;
  15. @property(nonatomic,strong)UILabel *contentLabel;
  16. @property(nonatomic, strong) UIButton *checkButton;
  17. @property (nonatomic,copy) void (^didClickSwitch)(BOOL SwitchOn);
  18. @property(nonatomic,strong) lastFileModel*curLastFileModel;
  19. - (void)hideCheckButtonBy:(BOOL)isHide;
  20. @end
  21. NS_ASSUME_NONNULL_END