123456789101112131415161718192021222324 |
- //
- // HFAlert.h
- // smartRhino
- //
- // Created by niuzhen on 2020/4/30.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BSAlertView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HFAlert : BSAlertView
- @property (weak, nonatomic) IBOutlet UIView *AlertView;
- @property (weak, nonatomic) IBOutlet UIButton *disBtn;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- + (instancetype)share;
- - (void)showText:(NSString *)text;
- - (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|