#include <ZoomSDKSignInterpretationController.h>
Inherits NSObject.
◆ addSignInterpreter:signLanguageId:
- (ZoomSDKError) addSignInterpreter: |
|
(unsigned int) | userID |
signLanguageId: |
|
(NSString *) | signLanguageId |
Add someone as a sign interpreter.
- Parameters
-
userID | The user’s ID. |
signLanguageId | The sign language ID. |
- Returns
- If the function succeeds, it will return
ZoomSDKError_Success
. Otherwise failed.To get extended error information, see ZoomSDKError.
◆ canSignLanguageInterpreterTalk:
- (BOOL) canSignLanguageInterpreterTalk: |
|
(unsigned int) | userID |
|
Determine if the sign language interpreter be allowed to talk.
- Parameters
-
userID | The unique identity of the user. |
- Returns
- YES indicates to allow to talk, otherwise not.
◆ canStartSignInterpretation
- (BOOL) canStartSignInterpretation |
|
|
|
Determine if I can start the sign interpretation in the meeting.
◆ getAllSupportedSignLanguageInfoList
Get all supported sign interpretation language list.only for host.
- Returns
- If the function succeeds, the return array contain support language object.
◆ getAvailableSignLanguageInfoList
Get the available sign interpretation language list.
- Returns
- If the function succeeds, the return array contain available language object.
◆ getSignInterpretationLanguageInfoByID:
Get the sign language object of the specified sign language ID.
- Parameters
-
signLanguageID | Specify the sign language ID for which you want to get the information. |
- Returns
- If the function succeeds, the return value is ZoomSDKSignInterpretationLanguageInfo object.
◆ getSignInterpretationStatus
Get the sign interpretation status of current meeting.
- Returns
- If the function succeeds, the return value is the current meeting’s sign interpretation status.For more details, see ZoomSDKSignInterpretationStatus.
◆ getSignInterpreterAssignedLanID
- (NSString *_Nullable) getSignInterpreterAssignedLanID |
|
|
|
Get sign language id if myself is a sign interpreter.Only for interpreter.
- Returns
- If the function succeeds, the return value is the current assigned sign language id, otherwise not.
◆ getSignInterpreterList
Get the sign interpreters list.
- Returns
- If the function succeeds, the return array contain sign interpreter object.
◆ isSignInterpretationEnabled
- (BOOL) isSignInterpretationEnabled |
|
|
|
Determine if the sign interpretation function is enabled.
- Returns
- YES means sign interpretation function is enabled, otherwise it returns NO.
◆ isSignInterpreter
- (BOOL) isSignInterpreter |
|
|
|
Determine if myself is interpreter.
- Returns
- YES means self is sign language interpreter, otherwise not.
◆ joinSignLanguageChannel:
- (ZoomSDKError) joinSignLanguageChannel: |
|
(NSString *) | signLanguageId |
|
Join a sign language channel if myself is not a sign interpreter.
- Parameters
-
signLanguageId | Specify the sign language channel ID. |
- Returns
- If the function succeeds, it will return ZoomSDKError_Success, otherwise not.
◆ leaveSignLanguageChannel
Off sign language if myself is not a sign interpreter.Only for non-interpreter.Available only for customized ui.
- Returns
- If the function succeeds, it will return ZoomSDKError_Success, otherwise not.
◆ modifySignInterpreter:signLanguageId:
- (ZoomSDKError) modifySignInterpreter: |
|
(unsigned int) | userID |
signLanguageId: |
|
(NSString *) | signLanguageId |
Modify the language of some sign interpreter.
- Parameters
-
userID | The unique identity of the user. |
signLanguageId | The id of sign language. |
- Returns
- If the function succeeds, it will return
ZoomSDKError_Success
. Otherwise failed.To get extended error information, see ZoomSDKError.
◆ removeSignInterpreter:
- (ZoomSDKError) removeSignInterpreter: |
|
(unsigned int) | userID |
|
Remove someone from the list of sign interpreters.
- Parameters
-
- Returns
- If the function succeeds, it will return
ZoomSDKError_Success
. Otherwise failed.To get extended error information, see ZoomSDKError.
◆ requestSignLanguageInterpreterToTalk:allowToTalk:
- (ZoomSDKError) requestSignLanguageInterpreterToTalk: |
|
(unsigned int) | userID |
allowToTalk: |
|
(BOOL) | allowToTalk |
Host allow sign language interpreter to talk.
- Parameters
-
userID | The user’s ID. |
allowToTalk | YES indicates allow to talk, otherwise false. |
- Returns
- If the function succeeds, it will return
ZoomSDKError_Success
. Otherwise failed.To get extended error information, see ZoomSDKError.
◆ startSignInterpretation
Start sign interpretation.
- Returns
- If the function succeeds, it will return
ZoomSDKError_Success
. Otherwise failed.To get extended error information, see ZoomSDKError.
◆ stopSignInterpretation
Stop sign interppretation.
- Returns
- If the function succeeds, it will return
ZoomSDKError_Success
. Otherwise failed.To get extended error information, see ZoomSDKError.
◆ delegate