1234567891011121314151617181920212223 |
- //
- // NASLastFileView.h
- // 双子星云手机
- //
- // Created by xd h on 2024/6/19.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NASLastFileView : UIView
- @property(nonatomic,strong)UIView *whiteBgView;
- @property(nonatomic,strong)UIButton *eyeButton;
- @property(nonatomic,strong)UIImageView* notDataImageV;
- @property(nonatomic,strong)UILabel *notDataLabel;
- @property (nonatomic,copy) void (^didClickButtonFun)(NSInteger tag);
- @end
- NS_ASSUME_NONNULL_END
|