receiveHeadView.h 410 B

12345678910111213141516171819202122
  1. //
  2. // receiveHeadView.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/5/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface receiveHeadView : UIView
  10. @property(nonatomic,strong) UIButton * downLoadButton;
  11. @property(nonatomic,strong) UIButton * saveButton;
  12. @property (nonatomic,copy) void (^didClickbuttonFun)(NSInteger tag);
  13. - (void)didClickButFun:(UIButton*)but;
  14. @end
  15. NS_ASSUME_NONNULL_END