JSGController.h 470 B

1234567891011121314151617181920212223242526
  1. //
  2. // JSGController.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/4/21.
  6. //
  7. #ifndef JSGController_h
  8. #define JSGController_h
  9. #endif /* JSGController_h */
  10. #import <UIKit/UIKit.h>
  11. @import JitsiMeetSDK;
  12. @interface JSGController : UIViewController<JitsiMeetViewDelegate>
  13. @property (nonatomic) BOOL isCaller;
  14. @property (nonatomic) BOOL audioOnly;
  15. @property (nonatomic, strong) NSString *chatId;
  16. @property (nonatomic, strong) NSString *room;
  17. -(void)startJitsiMeetCall;
  18. @end