Language Interpretation with Zoom meeting SDK (iOS) - zoom-sdk

I want to set the language with which the user enters the meeting, I am trying to use MobileRTCInterpretationServiceDelegate but it seems that this is never called. Can you support me with this? Thanks.
Here's what I have to join the meeting: Join Meeting

Related

Is it possible to have two different UI for a program?

Is it possible to have a program built for two countries and change the appearance and language of the program due to the SIM card code on the device?
Yes. You can check user's language for this.
Get the language key of localization:
let preferredLanguage = NSLocale.preferredLanguages.first
Also you can get country code.
Also you can do it using user's location, but I think it is a bad approach. Location requires a lof of battery.

is it possible to track user position from his phone number in ios?

I am working on map based iphone application. Where i need to find user position of week days from morning 9:00 AM to 5:00 PM either by using Device IDs or his mobile number. I know that Apple has instructed third-party developers to cease tracking iPhone, iPad, and iPod Touch users via the unique serial number associated with each one of its hardware devices. But is it possible to track position from any other way ?
Thanks
The only possible way is to use location based APIs. Device ID and MAC are deprecated and giving same results for iOS7.
It is not possible to track with mobile number as well. Service providers can help for that but not with help of phone.
I don't think you can track a phone by the mobile number unless you are the police or something, and have access to that data.

Is it possbile to translate text "AppName would like to Use your current location"?

My app uses GPS. At first launch, user is asked if he want's to allow gps positioning. I would like to translate this text to my language. Is it even possible?
Just set the device language to yours.

iPhone Developer Community voice over IP

Anyone know if there exists any Broadcast/Groups system online that allows developers to become connected in real time to be able to voice chat and keyboard chat, specific to their needs, something a little more immediate as opposed to forums/stackoverflow/pm software.
I for example would like to join a voip chat related to mapkit for iPhone... So while I'm working with mapkit for the next few days, I'd like to become connected with likeminded developers, and from there add them to my friends list or something...
Unless I've just missed it, I'm not aware of anything like this...and if it doesn't exist, there's a free startup company idea for someone...
I am not aware of any VOIP chat forum but I do know that there is a text chat rooms option on stackoverflow. You can either create your own chatroom or join one of the existing ones, like:
https://chat.stackoverflow.com/rooms/682/iphone-ipad

Is the UIDatePicker really the best iPhone UI mechanism for selecting dates?

I'm diving into iPhone/iPad development and I'm trying to find an elegant mechanism for allowing the user to select dates. It seems to me that a calendar control would be the best way to go, but I don't see one in anywhere in the SDK. All all I see is this overblown, the-price-is-right-looking DatePicker control.
Is this the only control that comes with UIKit for allowing the user to select dates?
What about the calendar control that the Calendar app uses?
Also, I should note I'm really trying to avoid using 3rd party code frameworks that have little or no documentation, because I'm new to all this and sufficient documentation on how to use it is a must at this point. Thanks so much in advance for all your wisdom!
Is this the only control that comes with UIKit for allowing the user to select dates?
Yes
What about the calendar that the Notes app uses?
(Do you mean the Calendar app? I don't recall any date pickers in Notes app.)
It's in the private CalendarUI.framework. There exists 3rd-party libraries, and you could implement one yourself, of course.