TipAlert.h 543 B

12345678910111213141516171819202122
  1. //
  2. // TipAlert.h
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2022/5/30.
  6. // Copyright © 2022 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BaseXibView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TipAlert : BaseXibView
  12. @property (weak, nonatomic) IBOutlet UILabel *labTipText;
  13. @property (weak, nonatomic) IBOutlet QMUIFillButton *btnAgree;
  14. @property (weak, nonatomic) IBOutlet QMUIFillButton *btnCancel;
  15. @property(nonatomic, copy) void (^cancel)(void);
  16. @property(nonatomic, copy) void (^agree)(void);
  17. @end
  18. NS_ASSUME_NONNULL_END