HFAlert.h 503 B

123456789101112131415161718192021222324
  1. //
  2. // HFAlert.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/30.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BSAlertView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HFAlert : BSAlertView
  12. @property (weak, nonatomic) IBOutlet UIView *AlertView;
  13. @property (weak, nonatomic) IBOutlet UIButton *disBtn;
  14. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  15. + (instancetype)share;
  16. - (void)showText:(NSString *)text;
  17. - (void)dismiss;
  18. @end
  19. NS_ASSUME_NONNULL_END