I have a tab bar app that I have made with four view controllers and each .xib has multiple buttons that speak an English word when touched. I would now like to add a toggle, on the flip-side, that would allow the user to switch all spoken words between Spanish and English. So I was thinking I would use a UISegmentedControl, but the more I think of it, I may need to use a UISwitch.
I have completed the flip-side "utility" part of the app, but I am just not sure how to go about doing the toggle between English and Spanish.
My thought process is that I would clone the buttons, but have them speak Spanish and then “toggle” each of the buttons to show/hide. Or, do I need to clone my views and "toggle" four new separate views? I also only want the one toggle to manage all four view controllers.
Do you think you could point me in the right direction of how to do this? I would appreciate any help you could give.
I have completed the flip-side "utility" part of the app, but I am just not sure how to go about doing the toggle between English and Spanish.
My thought process is that I would clone the buttons, but have them speak Spanish and then “toggle” each of the buttons to show/hide. Or, do I need to clone my views and "toggle" four new separate views? I also only want the one toggle to manage all four view controllers.
Do you think you could point me in the right direction of how to do this? I would appreciate any help you could give.