Reputation: 1221
how to change a table view layout to be from right to left (including its transition to a detail view: the transition must also be from right to left) ? thanx in advance.
Upvotes: 3
Views: 2429
Reputation: 1595
For view transition you can check the following apple sample code:View Transition
Upvotes: 4
Reputation: 31722
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?
Upvotes: 3