Meeting being recorded call back

Description
Does the macOS SDK support a callback letting you know that someone started recording the meeting? The SDK default UI supports it and obviously the zoom client does, but I can’t see anything in the documentation about it. I’m assuming it’s not implemented but thought I would ask.

Which version?
5.2.1 (41751.1026)

Hi @timazed,

Thanks for the post. Yes, you may use the callback onRecordStatus(https://zoom.github.io/zoom-sdk-macos/protocol_zoom_s_d_k_meeting_record_delegate-p.html#a7155b38a79e59df3fa330d47a9e656cb) for this purpose.

/**
 * @brief Callback event that the status of local recording changes.
 * @param status Value of recording status. 
 *
 */
- (void)onRecordStatus:(ZoomSDKRecordingStatus)status;

Hope this helps. Thanks!