12345678910111213141516171819202122 |
- //
- // receiveHeadView.h
- // 双子星云手机
- //
- // Created by xd h on 2024/5/23.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface receiveHeadView : UIView
- @property(nonatomic,strong) UIButton * downLoadButton;
- @property(nonatomic,strong) UIButton * saveButton;
- @property (nonatomic,copy) void (^didClickbuttonFun)(NSInteger tag);
- - (void)didClickButFun:(UIButton*)but;
- @end
- NS_ASSUME_NONNULL_END
|