tags:

views:

68

answers:

2

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
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
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