I have a static tableView with some custom cells. What I wan't to do is change the section titles programmatically. As far as I know, because the cells are static, I can't use methods like cellForRowAtIndexPath and so on, so my question is, is it possibly to change them like.
self.tableView.section1.text = @"title1"; // something like this?
I've tried to create an IBOutlet of the section but I get the following error:
Unknown type name 'UITableViewSection': did you mean 'UITableViewStyle?'
What I can do is edit the content of the cells, but not the header.
Thanks!