I can't see an easy way to do this outside of customizing the actual content. Tell me I missed something incredibly simple here.
A:
Why not assign the tableFooterView (in your controller) to a UILabel and set the alignment (using the textAlignment method) to left align?
Steven Noyes
2010-04-02 17:02:56
That certainly is a simple solution but I was hoping that 1) there was an extremely simple way to do this and 2) the label would take on the default style of table footers (will it?).
Ken Wootton
2010-04-06 15:17:24
A:
You call - (UIView *)tableView:viewForFooterInSection:
. It will return a view, most likely a UILabel and you set the text display using the view's methods.
TechZen
2010-04-02 17:05:51