I\'me using this code to add a footer to the TableView. It has 20 sections, and each section a few rows. There\'s a titleForHeaderInSection, and sectionForSectionIndexTitle
I had the same problem but I replaced the following line in my header:
@interface MyController : UIViewTableViewController
with this line and it works as expected:
@interface RequestViewController : UIViewController
Notice the UIViewController. Good luck :)