I have a UIListView controller that has a UIToolbar at the bottom with 3 buttons. Like so:
Now, I am trying to make my app support other languages and when I change the language of the iPhone simulator to some language that is right-to-left, the toolbar shows up like this:
It seems like the next day button is being switched with the previous day button. Because when I press on the left button it, changes the date forward a day. I, of course, do not want this, can anyone help me fix this issue.
Here is what I tried to so far to try and fix this issue:
I tried to change the semantic of the UIToolbar to "Force Left-to-Right" I tried doing the same for all the views in that the toolbar is in, no luck. I even tried changing the semantic programmatically like this:
toolbar.semanticContentAttribute = .forceLeftToRight
At this point, I have no idea how to fix this issue, any help is appreciated!

