tags:

views:

95

answers:

2

I'm using Three20's TTTableViewController to display a sectioned table view. The datasource is a TTSectionedDataSource containing TTTableControlItems. The controls are all left aligned. I'd like to make them right aligned. Is there any way to do this without creating a custom cell?

alt text

A: 

The best way is to make a sub-class. Information how to make it is here: http://blog.whirix.com/2010/06/customizing-tttablemessageitem.html

Slava
A: 

Yes, there is. For each of your text fields:

textField.textAlignment = UITextAlignmentRight;
Nick Toumpelis