PopWaitAlert.h 622 B

1234567891011121314151617181920212223242526
  1. //
  2. // PopWaitAlert.h
  3. // PopupViewWrapper
  4. //
  5. // Created by Rui Zhang on 3/20/23.
  6. // Copyright © 2023 yangyi. All rights reserved.
  7. //
  8. #import "RAPopviewContainer.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PopWaitAlert : RAPopView
  11. @property (strong,nonatomic) UILabel* labelTitle;
  12. @property (strong,nonatomic) UILabel* labelMessage;
  13. -(void)setTitle:(NSString*)titleText;
  14. -(void)setMessage:(NSString*)messageText;
  15. - (instancetype)init:(void (^ __nullable)(void))completion;
  16. + (instancetype)Show:(NSString*) title message:(NSString*) message completion:(void (^ __nullable)(void))completion;
  17. @end
  18. NS_ASSUME_NONNULL_END