How to create left to right UITableView?

I want to create a right to left UITableView. right now i have a view from left to right.

I would like to know if there is an easy way to move from left to right in a table from right to left using the latest iphone SDK?

I tried textAlignment in my own table view table, but without success.

thank

+2
source share
1 answer

I think that what you need is a table that, when clicked, will slide in the opposite way. Instead of FirstTable moving left and SecondTable moving IN right, you want it to slide in a different path. This will be a more difficult task.

On the other hand, the presence of text on the other side of the table:

Make sure your cells are defined by default.

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

, , - textLabel :

cell.textLabel.textAlignment = UITextAlignmentRight;

iOS7 cell.textLabel.textAlignment = NSTextAlignmentRight;

, ,

+1

All Articles