AuthDisplayView.h 553 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // AuthDisplayView.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2022/4/6.
  6. //
  7. #import <UIKit/UIKit.h>
  8. typedef void(^AuthCallback)(void);
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AuthDisplayView : UIView
  11. @property (weak, nonatomic) IBOutlet UIImageView *imageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *tispLabel;
  13. @property (weak, nonatomic) IBOutlet UIButton *sureButton;
  14. + (instancetype)shareInstance;
  15. - (void)configDisplayMessage:(NSString *)tipsMessage;
  16. - (void)sureCallback:(AuthCallback)callback;
  17. @end
  18. NS_ASSUME_NONNULL_END