I have a table view cell that is used in a multilingual application. I used two different UITableViewCell
in my storyboard for right to left and left to right applications but both of these UITableViewCells are linked to one file.
I used this because I do not want to load diffrent cells when text orientation is right to left or left to right.
Suppose that we have one label into each cell. In objective c we can assign this two label into one outlet. But in swift only one of them can be assigned. When I assign one of them the other one remove
How can we do this mechanism in swift too?