| 12345678910111213141516171819202122232425262728293031 |
- //
- // FloatingWindow.h
- // AIIM
- //
- // Created by gan on 2025/7/9.
- //
- #ifndef FloatingWindow_h
- #define FloatingWindow_h
- #endif /* FloatingWindow_h */
- #import <UIKit/UIKit.h>
- @interface FloatingWindow : UIWindow
- @property (nonatomic, copy) void (^onSuccess)(void);
- @property (nonatomic, copy) void (^onSuccessWithSecurity)(void);
- @property (nonatomic, copy) void (^onCancel)(void);
- - (void)show:(NSInteger)type;
- - (void)showView:(UIView *)view;
- - (void)hide;
- -(void)viewInFload:(NSInteger)type;
- @end
|