| 123456789101112131415161718192021222324252627282930 |
- //
- // AuthDisplayView.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2022/4/6.
- //
- #import <UIKit/UIKit.h>
- typedef void(^AuthCallback)(void);
- NS_ASSUME_NONNULL_BEGIN
- @interface AuthDisplayView : UIView
- @property (weak, nonatomic) IBOutlet UIImageView *imageView;
- @property (weak, nonatomic) IBOutlet UILabel *tispLabel;
- @property (weak, nonatomic) IBOutlet UIButton *sureButton;
- + (instancetype)shareInstance;
- - (void)configDisplayMessage:(NSString *)tipsMessage;
- - (void)sureCallback:(AuthCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|