Cannot change language

Hello,
I use Zoom in my app, and I want to change the language on Zoom.
However, even I changed my iPhone’s default operating system language,
the zoom in my app still use English.
Or can I control the language with iOS SDK?

Hey @bettychen.proj

Thanks for using the dev forum!

To set the language in the Zoom SDK you need to use

[[MobileRTC sharedRTC] setLanguage:_languageArray[number]];

To view the available languages you can use

[[MobileRTC sharedRTC] supportedLanguages];

If the language you would like to use is not supported by default you can add it to the SDK. For more info about changing the SDK’s language check out this page: https://marketplace.zoom.us/docs/sdk/native-sdks/iOS/techniques/customize-language

Let me know if you have any other questions.

Thanks!
Michael

Hi @Michael_Condon
Thanks for your reply.
Does it means… If I change my iPhone’s default operating system language to Chinese, the language of Zoom won’t change to Chinese until I use the setLanguage function?

Hey @bettychen.proj

That is correct.

Thanks!
Michael