| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // FloatingWindow.h
- // AIIM
- //
- // Created by gan on 2025/7/9.
- //
- #ifndef FloatingWindow_h
- #define FloatingWindow_h
- #endif /* FloatingWindow_h */
- #import <UIKit/UIKit.h>
- @import JitsiMeetSDK;
- @interface FloatJSWindow : UIView
- @property (nonatomic, copy) void (^onSshow)(void);
- @property (nonatomic, copy) void (^onShide)(void);
- @property (nonatomic, copy) void (^onCancel)(void);
- @property (nonatomic, strong) UIButton *floatingButton;
- @property (nonatomic, assign) BOOL isfirstShow;
- - (void)show;
- - (void)hide;
- //---------
- @property (nonatomic) BOOL isCaller;
- @property (nonatomic) BOOL audioOnly;
- @property (nonatomic, weak) NSString *chatId;
- @property (nonatomic, weak) NSString *room;
- @end
|