JaHelia
JaHelia

Reputation: 1221

UITableView support for right to left languages

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

Answers (2)

Sarah
Sarah

Reputation: 1595

For view transition you can check the following apple sample code:View Transition

Upvotes: 4

Jhaliya - Praveen Sharma
Jhaliya - Praveen Sharma

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

Related Questions