mySetHeadView.h 404 B

12345678910111213141516171819202122
  1. //
  2. // mySetHeadView.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface mySetHeadView : UIView
  10. @property (nonatomic,strong)UILabel *imageBackupsLabel;
  11. @property (nonatomic,strong)UIButton *imageBackupsButton;
  12. - (void)closeImageBackupsFun;
  13. //
  14. @property (nonatomic,copy) void (^didClickBut)(NSInteger tag);
  15. @end
  16. NS_ASSUME_NONNULL_END