Customizing the Social Sharing Window
- (NSView *)socialShareView:(HWMSDKMeetingInfoModel* )confInfo;
API Description
This API is used to block the meeting sharing window. After the setting, the sharing pop-up window of the SDK (shown in the following figure) will be blocked.
Precautions
- If the method is implemented, it will be called when you use the sharing function during a meeting. The SDK controls the position, display, and hiding of the window.
Sample Code
- (NSView *)socialShareView:(HWMSDKMeetingInfoModel *)meetingInfo { if (!self.socialView) { self.socialView = [[HWMSocialView alloc] initWithFrame:NSMakeRect(0, 0, 500, 300)]; self.socialView.wantsLayer = YES; self.socialView.layer.backgroundColor = [NSColor whiteColor].CGColor; } self.socialView.meetingInfo = meetingInfo; return self.socialView; }
- (NSView *)socialShareView:(HWMConfStateInfo *)confInfo;
API Description
This API is used to block the meeting sharing window. After the setting, the sharing pop-up window of the SDK (shown in the following figure) will be blocked.
Precautions
- If the method is implemented, it will be called when you use the sharing function during a meeting. The SDK controls the position, display, and hiding of the window.
Sample Code
- (NSView *)socialShareView:(HWMConfStateInfo *)confDetail { if (!self.socialView) { self.socialView = [[HWMSocialView alloc] initWithFrame:NSMakeRect(0, 0, 500, 300)]; self.socialView.wantsLayer = YES; self.socialView.layer.backgroundColor = [NSColor whiteColor].CGColor; } self.socialView.confDetail = confDetail; return self.socialView; }
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot