UITableView support for right to left languages
how to change a table view layout to be from 开发者_JAVA技巧right to left (including its transition to a detail view: the transition must also be from right to left) ? thanx in advance.
For view transition you can check the following apple sample code:View Transition
There is no single property nigher in UITableView
nor UITableViewCell
to change the right to left OR left to right, If you want it in your application, you will have make an custom UITableViewCell
and layout the views (components of your cell) right to left.
Check the below SO post
Right to Left Alignment for UITableView
How to create a right to left UITableView?
精彩评论