UITableView support for languages ​​from right to left

how to change the appearance of the table view from right to left (including its transition to the detailed view: the transition should also be from right to left)? than in advance.

+3
source share
2 answers

To proceed to viewing, you can check the following example of apple code: View transition

+4
source

In UITableViewand UITableViewCellthere is no single property to change from right to left OR from left to right. If you want it in your application, you will create a custom one UITableViewCelland place the views (for example, the components of your cell) from right to left.

Check the bottom column SO

Left Alignment Right for UITableView

UITableView?

+3

All Articles