| 1234567891011121314151617181920212223242526 |
- //
- // JSGController.h
- // AIIM
- //
- // Created by gan on 2025/4/21.
- //
- #ifndef JSGController_h
- #define JSGController_h
- #endif /* JSGController_h */
- #import <UIKit/UIKit.h>
- @import JitsiMeetSDK;
- @interface JSGController : UIViewController<JitsiMeetViewDelegate>
- @property (nonatomic) BOOL isCaller;
- @property (nonatomic) BOOL audioOnly;
- @property (nonatomic, strong) NSString *chatId;
- @property (nonatomic, strong) NSString *room;
- -(void)startJitsiMeetCall;
- @end
|