NASLastFileView.h 475 B

1234567891011121314151617181920212223
  1. //
  2. // NASLastFileView.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/6/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface NASLastFileView : UIView
  10. @property(nonatomic,strong)UIView *whiteBgView;
  11. @property(nonatomic,strong)UIButton *eyeButton;
  12. @property(nonatomic,strong)UIImageView* notDataImageV;
  13. @property(nonatomic,strong)UILabel *notDataLabel;
  14. @property (nonatomic,copy) void (^didClickButtonFun)(NSInteger tag);
  15. @end
  16. NS_ASSUME_NONNULL_END