| 1234567891011121314151617181920212223242526 |
- //
- // PopWaitAlert.h
- // PopupViewWrapper
- //
- // Created by Rui Zhang on 3/20/23.
- // Copyright © 2023 yangyi. All rights reserved.
- //
- #import "RAPopviewContainer.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PopWaitAlert : RAPopView
- @property (strong,nonatomic) UILabel* labelTitle;
- @property (strong,nonatomic) UILabel* labelMessage;
- -(void)setTitle:(NSString*)titleText;
- -(void)setMessage:(NSString*)messageText;
- - (instancetype)init:(void (^ __nullable)(void))completion;
- + (instancetype)Show:(NSString*) title message:(NSString*) message completion:(void (^ __nullable)(void))completion;
- @end
- NS_ASSUME_NONNULL_END
|