You can tag your custom section footer when creating it, for example, in tableView:viewForFooterInSection: for example:
mySectionFooterView.tag = kMySectionFooterViewTag;
kMySectionFooterViewTag can be any NSInteger you like.
To access mySectionFooterView from any other part of your program, you can use:
mySectionFooterView = [myTableView viewWithTag:kMySectionFooterViewTag];
myTableView is a UITableView that includes your custom footer section. You can usually use myTableView as self.tableView when using the UITableViewController .
Note that performance considerations may arise with this approach, as viewWithTag: will look for the entire hierarchy of myTableView .
Spiros
source share