// // FloatingWindow.h // AIIM // // Created by gan on 2025/7/9. // #ifndef FloatingWindow_h #define FloatingWindow_h #endif /* FloatingWindow_h */ #import @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