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?
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
2010-09-11 06:39:25
A:
Yes, there is. For each of your text fields:
textField.textAlignment = UITextAlignmentRight;
Nick Toumpelis
2010-10-31 14:22:01